Added CSS styling for lists in FAQ answers
- Implemented styling for unordered and ordered lists inside FAQ answers. - Enhanced readability and visual alignment with the overall theme.
This commit is contained in:
parent
c81eda13f7
commit
b3a0377b2f
1 changed files with 24 additions and 0 deletions
|
@ -280,7 +280,31 @@ button:active {
|
|||
max-height: 100%;
|
||||
padding: 15px;
|
||||
}
|
||||
/* List Styles for FAQ */
|
||||
.faq-answer ul,
|
||||
.faq-answer ol {
|
||||
padding-left: 20px;
|
||||
margin: 15px 0;
|
||||
list-style-position: inside;
|
||||
color: var(--cyber-font-color);
|
||||
}
|
||||
|
||||
.faq-answer li {
|
||||
margin-bottom: 10px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.faq-answer ul {
|
||||
list-style-type: disc;
|
||||
}
|
||||
|
||||
.faq-answer ol {
|
||||
list-style-type: decimal;
|
||||
}
|
||||
|
||||
.faq-answer li::marker {
|
||||
color: var(--cyber-highlight-color);
|
||||
}
|
||||
/* Credits Section */
|
||||
.credits-section {
|
||||
background-color: var(--cyber-faq-bg-color);
|
||||
|
|
Loading…
Reference in a new issue