Skip to content

Commit

Permalink
Merge pull request #1091 from meetarora10/toggle-branch
Browse files Browse the repository at this point in the history
feat: Added dark mode effects on the FAQ page.
  • Loading branch information
apu52 authored Jul 17, 2024
2 parents 96e694a + ac26de3 commit 65fa6a2
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,31 @@
pointer-events: none;
z-index: 9999;
}
body.dark-theme .accordion{
background-color: #040565;
}
body.dark-theme #btn-style{
border: 2px solid red;
color: #fdbb2dbf
}
body.dark-theme .accordion__title{
color: white;
}
body.light-theme .accordion__title{
color: black;
}
body.dark-theme .accordion__question{
color: white;
}
body.light-theme .accordion__question{
color: black;
}
body.dark-theme .accordion__answer{
color: white;
}
body.light-theme .accordion__answer{
color: black;
}
</style>
<link rel="stylesheet" href="imstyle.css">
<link rel="stylesheet" href="jquery.flipster.min.css">
Expand Down Expand Up @@ -286,7 +311,7 @@


<!-- --FAQ-- -->
<div class="accordion__wrapper">
<div class="accordion__wrapper" id="acc">
<h1 class="accordion__title">Frequently Asked Questions</h1>

<!-- Accordion 1 -->
Expand Down

0 comments on commit 65fa6a2

Please sign in to comment.