User:Fen/MainPage.css: Difference between revisions
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; | |||
} | |||
} | } |