49 lines
954 B
CSS
49 lines
954 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;
|
|
}
|
|
|
|
.remark-status, .remark-status * {
|
|
color: #ff3333 !important;
|
|
}
|
|
|
|
.remark-board, .remark-exit {
|
|
color: #8888ff !important;
|
|
}
|
|
|
|
.stationItem.not-in-journey .name, .stationItem.not-in-journey .arrival, .stationItem.not-in-journey .departure {
|
|
color: #aaaaaa;
|
|
}
|
|
|
|
.stationItem.cancelled .name {
|
|
text-decoration: line-through;
|
|
text-decoration-color: #ff3333;
|
|
color: #ff3333;
|
|
}
|
|
|
|
.stationItem .platform.changed {
|
|
color: #ff3333;
|
|
}
|
|
|
|
.remarkItem:nth-of-type(even) {
|
|
background-color: #202020;
|
|
}
|
|
|
|
}
|