webtools/site/clocks/style.css

23 lines
419 B
CSS
Raw Permalink Normal View History

2025-09-27 03:32:13 +00:00
: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 */
}
}
2025-09-25 22:13:29 +00:00
div.clock {
text-align: center;
margin-block-end: 1.8rem;
}
div.clock div.location {
2025-09-27 03:32:13 +00:00
color: var(--clock-label-color);
2025-09-25 22:13:29 +00:00
}
div.clock div.time {
font-size: 200%;
font-family: var(--pico-font-family-monospace);
}