Main Page.css: Difference between revisions
Appearance
No edit summary |
header with dark theme support test |
||
Line 1: | Line 1: | ||
.header-box { | .header-box { | ||
background: | background: #e3f2fd; | ||
border: 1px solid | border: 1px solid #ccc; | ||
border-radius: 8px; | border-radius: 8px; | ||
padding: 0.5em; | padding: 0.5em; | ||
color: | color: #000; | ||
} | |||
@media (prefers-color-scheme: dark) { | |||
.header-box { | |||
background: #2b2f3a; | |||
border: 1px solid #444; | |||
color: #e0e0e0; | |||
} | |||
} | } |
Revision as of 19:28, 4 July 2025
.header-box { background: #e3f2fd; border: 1px solid #ccc; border-radius: 8px; padding: 0.5em; color: #000; } @media (prefers-color-scheme: dark) { .header-box { background: #2b2f3a; border: 1px solid #444; color: #e0e0e0; } }