mirror of
https://codeberg.org/kbruen/kai.infotren.git
synced 2025-02-22 17:19:37 +02:00
23 lines
284 B
CSS
23 lines
284 B
CSS
@media(prefers-color-scheme: dark) {
|
|
|
|
.early {
|
|
color: lightgreen;
|
|
}
|
|
|
|
.late {
|
|
color: #ff3333;
|
|
}
|
|
|
|
.station {
|
|
color: white;
|
|
}
|
|
|
|
.stationItem:nth-of-type(even) {
|
|
background-color: #0f0f0f;
|
|
}
|
|
|
|
.stationItem .arrival .original, .stationItem .departure .original {
|
|
color: #afafaf;
|
|
}
|
|
|
|
}
|