Skip to content

Commit

Permalink
Merge pull request #68 from rupeshv2121/rupesh22
Browse files Browse the repository at this point in the history
Fixed Issues in footer of landing page, FAQ's Page
  • Loading branch information
Ojas-Arora authored Jan 9, 2025
2 parents d86a64e + 81c6244 commit e4681f6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
10 changes: 8 additions & 2 deletions faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<style>
body {
background-color: antiquewhite;
}
/* FAQ */
.faq-section {
max-width: 800px;
margin: 30px auto 20px auto;
margin: -20px auto 20px auto;
padding: 20px;
}

.faq-section h2 {
font-size: 2rem;
text-align: center;
margin-bottom: 20px;
color: #333;
font-family: cursive;
}

.faq-item {
Expand All @@ -28,11 +33,12 @@
}

.faq-question {
font-family: cursive;
padding: 15px;
cursor: pointer;
background-color: #f4f4f4;
color: #333;
font-size: 16px;
font-size: 18px;
font-weight: bold;
border-radius: 4px;
}
Expand Down
19 changes: 16 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
/* CSS for Scroll to Top Button */
#scrollBtn {
position: fixed;
bottom: 80px; /* Place closer to the bottom */
bottom: 88px; /* Place closer to the bottom */
right: 30px; /* Place closer to the right */
display: none; /* Initially hidden */
background-color: #d6a52b;
Expand Down Expand Up @@ -267,8 +267,8 @@
}

.image-icon {
width: 120px;
height: 120px;
width: 80px;
height: 80px;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
Expand Down Expand Up @@ -635,6 +635,19 @@
height: 4vh;
border: none;
}
.subscribe-button {
padding: 10px;
border: none;
border-radius: 5px;
background-color: #d6a52b;
color: #222;
font-weight: 600;
cursor: pointer;
}

.subscribe-button:hover {
background-color: #d7b96b;
}
</style>
</head>
<body>
Expand Down

0 comments on commit e4681f6

Please sign in to comment.