Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhanced the FAQ page footer #1379

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 78 additions & 4 deletions assets/css_files/FAQ.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
{

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins" , sans-serif;
}

boy{
body{

align-items: center;
justify-content: center;
Expand All @@ -17,14 +18,14 @@ boy{

.acc{
display: flex;
ax-width: 1010px;
max-width: 1010px;
width: 100%;
align-items: center;
justify-content: space-between;
background: #efe3ec;
border-radius: 25px;
margin-top: 55px;
magin-bottom: -18px;
margin-bottom: -18px;
padding: 45px 90px 45px 60px;

}
Expand Down Expand Up @@ -107,6 +108,79 @@ boy{
.acc-text li.showAnswer p{
display: block;
}
/* Footer Styles */
.footer {
background: #7d2ae8; /* Background color */
color: white; /* Text color */
padding: 30px 60px; /* Padding for spacing */
border-radius: 20px; /* Rounded corners */
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
text-align: center; /* Center-align text */
margin-top: 30px; /* Space above the footer */
}

.footer ul.social-icon {
list-style: none; /* Remove bullet points */
padding: 0; /* Remove padding */
display: flex; /* Flexbox for horizontal layout */
justify-content: center; /* Center the icons */
gap: 15px; /* Space between icons */
}

.footer ul.social-icon li {
display: inline-block; /* Inline-block for horizontal alignment */
}

.footer ul.social-icon a {
color: white; /* Icon color */
font-size: 24px; /* Icon size */
text-decoration: none; /* Remove underline */
transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.footer ul.social-icon a:hover {
color: #ffe600; /* Hover color */
}

.footer p {
margin-top: 20px; /* Space above text */
font-size: 16px; /* Font size */
}

.footer p a {
color: #ffe600; /* Color for links */
text-decoration: none; /* Remove underline */
}

.footer p a:hover {
text-decoration: underline; /* Underline on hover */
}

@media (max-width: 994px) {
.footer {
padding: 20px 30px; /* Adjust padding for smaller screens */
}

.footer ul.social-icon {
flex-direction: column; /* Stack icons vertically */
gap: 10px; /* Adjust gap */
}

.footer ul.social-icon a {
font-size: 20px; /* Smaller icon size */
}
}

@media (max-width: 538px) {
.footer {
padding: 15px 20px; /* Adjust padding for very small screens */
}

.footer p {
font-size: 14px; /* Smaller text size */
}
}


@media (max-width: 994px) {
body{
Expand Down