More actions
No edit summary |
No edit summary |
||
Line 41: | Line 41: | ||
color: #FFD700; /* Slightly brighter gold for emphasis */ | color: #FFD700; /* Slightly brighter gold for emphasis */ | ||
text-shadow: 0 0 5px rgba(139, 111, 53, 0.8); | text-shadow: 0 0 5px rgba(139, 111, 53, 0.8); | ||
} | |||
/* Style for collapsed sections */ | |||
.accordion-section.mw-collapsed .mw-headline { | |||
background-color: #e0e0e0; /* Gray background when collapsed */ | |||
font-weight: normal; | |||
padding: 5px; | |||
border: 1px solid #ccc; | |||
cursor: pointer; | |||
} | |||
/* Style for expanded sections */ | |||
.accordion-section:not(.mw-collapsed) .mw-headline { | |||
background-color: #d0ffd0; /* Light green when expanded */ | |||
font-weight: bold; | |||
padding: 5px; | |||
border: 1px solid #00cc00; | |||
cursor: pointer; | |||
} | |||
/* Content styling */ | |||
.accordion-section .mw-collapsible-content { | |||
border: 1px solid #ccc; | |||
padding: 10px; | |||
background-color: #f9f9f9; | |||
} | |||
/* Optional: Hide default [show]/[hide] links if you prefer pure header toggle */ | |||
.mw-collapsible-toggle { | |||
display: none; | |||
} | } |