webtools/site/clocks/style.css
Leon Mika 35270f72ca
All checks were successful
/ publish (push) Successful in 49s
Fixed styling for dark-mode
2025-09-27 13:32:13 +10:00

23 lines
419 B
CSS

:root {
--clock-label-color: rgb(175, 41, 29); /* Red 600 */
}
@media (prefers-color-scheme: dark) {
:root {
--clock-label-color: rgb(238, 64, 46); /* Red 450 */
}
}
div.clock {
text-align: center;
margin-block-end: 1.8rem;
}
div.clock div.location {
color: var(--clock-label-color);
}
div.clock div.time {
font-size: 200%;
font-family: var(--pico-font-family-monospace);
}