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

FAQ section in Dark Mode Resolved #2140

Merged
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
41 changes: 10 additions & 31 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3540,36 +3540,6 @@ <h2>We Value Your Feedback!</h2>
}
</style>

<!-- <footer>
<div class="footer-content">
Quick Links Section
<div class="footer-section quick-links">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">ChatBot</a></li>
<li><a href="#">Feedback</a></li>
<li><a href="#">FAQ's</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
About Us Section

<div class="footer-section about-us">
<h3>About Us</h3>
<p>Empowering aspiring developers to master web development through hands-on, small-scale projects.</p>
</div>
Newsletter Section
<div class="footer-section newsletter">
<h3>Subscribe to Our Newsletter</h3>
<form>
<input type="email" placeholder="Enter your email" required>
<button type="submit">Subscribe</button>
</form>
</div>
</div> -->

</footer> -->

<!-- Added FAQ Section -->
<section id="faq">
Expand Down Expand Up @@ -3616,7 +3586,16 @@ <h3 class="faq-question">Where can I find the source code?</h3>
}

/*Dark Mode theme styling adjustments*/

[data-theme="dark"] #faq,
[data-theme="dark"] #faq h2{
background-color:black;
color:white;
}

[data-theme="dark"] .faq-item h3,
[data-theme="dark"] .faq-item p{
color:white;
}

.faq-item {
margin-bottom: 15px;
Expand Down
Loading