You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
717 B
43 lines
717 B
@media(prefers-color-scheme: dark) { |
|
|
|
.early { |
|
color: lightgreen; |
|
} |
|
|
|
.late { |
|
color: #ff3333; |
|
} |
|
|
|
#tabs-arr { |
|
border-bottom-color: #bbffbb; |
|
} |
|
|
|
#tabs-dep { |
|
border-bottom-color: #bbbbff; |
|
} |
|
|
|
#arrivals .train-item { |
|
background-color: #001a00; |
|
} |
|
|
|
#arrivals .train-item:nth-of-type(even) { |
|
background-color: #004400; |
|
} |
|
|
|
#departures .train-item { |
|
background-color: #00002a; |
|
} |
|
|
|
#departures .train-item:nth-of-type(even) { |
|
background-color: #000066; |
|
} |
|
|
|
.train-item.cancelled { |
|
background-color: #550000 !important; |
|
} |
|
|
|
.train-item .platform { |
|
border-color: white; |
|
} |
|
|
|
}
|
|
|