diff options
Diffstat (limited to 'sass/src')
-rw-r--r-- | sass/src/common/local.scss | 53 |
1 files changed, 41 insertions, 12 deletions
diff --git a/sass/src/common/local.scss b/sass/src/common/local.scss index c3fe29c..320c6d0 100644 --- a/sass/src/common/local.scss +++ b/sass/src/common/local.scss @@ -122,12 +122,12 @@ ul.suggestions { } .departures .dep-dest { margin-left: 0.8rem; + i.material-icons { + vertical-align: middle; + } .followee-checkin { font-size: 0.9rem; display: block; - i.material-icons { - vertical-align: middle; - } } } @@ -208,31 +208,42 @@ ul.route-history > li { width: fit-content; min-width: 6ch; margin: 0 auto; - - &.Bus, &.RUF, &.AST { + + &.Bus, &.BUS, &.NachtBus, &.Niederflurbus, &.Stadtbus, &.MetroBus, &.PlusBus, &.Landbus, &.Regionalbus, &.RegionalBus, &.SB, &.ExpressBus, &.BSV, &.RVV-Bus-Linie, &.Buslinie, &.Omnibus, &.RegioBus { background-color: #a3167e; border-radius: 5rem; padding: .2rem .5rem; } - &.STR { + &.RUF, &.AST, &.RufTaxi, &.Rufbus, &.Linientaxi { + background-color: #ffd800; + color: black; + border-radius: 5rem; + padding: .2rem .5rem; + } + &.Fhre, &.Fh, &.Schiff, &.SCH, &.KAT { + background-color: #309fd1; + border-radius: 5rem; + padding: .2rem .5rem; + } + &.STR, &.Tram, &.TRAM, &.Str, &.Strb, &.STB, &.Straenbahn, &.NachtTram, &.Stadtbahn, &.Niederflurstrab { background-color: #c5161c; border-radius: 5rem; padding: .2rem .5rem; } - &.S, &.RS, &.RER, &.SKW { + &.S, &.RS, &.RER, &.SKW, &.METRO, &.S-Bahn { background-color: #008d4f; border-radius: 5rem; padding: .2rem .5rem; } - &.U, &.STB, &.M { + &.U, &.M, &.SUBWAY, &.U-Bahn, &.UBAHN, &.Schw-B, &.Schwebebahn, &.H-Bahn { background-color: #014e8d; border-radius: 5rem; padding: .2rem .5rem; } - &.RE, &.IRE, &.REX { + &.RE, &.IRE, &.REX, &.REGIONAL_FAST_RAIL { background-color: #ff4f00; } - &.RB, &.MEX, &.TER, &.R { + &.RB, &.MEX, &.TER, &.R, &.REGIONAL_RAIL, &.Regionalzug, &.R-Bahn, &.BRB { background-color: #1f4a87; } // DE @@ -242,7 +253,9 @@ ul.route-history > li { // FR &.TGV, &.OGV, &.EST, // PL - &.TLK, &.EIC { + &.TLK, &.EIC, + // MOTIS + &.HIGHSPEED_RAIL, &.LONG_DISTANCE { background-color: #ff0404; font-weight: 900; font-style: italic; @@ -251,7 +264,7 @@ ul.route-history > li { &.RJ, &.RJX { background-color: #c63131; } - &.NJ, &.EN { + &.NJ, &.EN, &.NIGHT_RAIL { background-color: #29255b; } &.WB { @@ -275,6 +288,17 @@ ul.route-history > li { } } +.status-card-progress-annot { + padding-bottom: 2ex; + border-bottom: 2px dashed #808080; +} + +.timeline-in-transit { + .status-card-progress-annot { + border-bottom: none; + } +} + @media screen and (max-width: 600px) { .collection.departures li { @@ -295,3 +319,8 @@ ul.route-history > li { } } } + +a.timeline-link { + padding-top: 1ex; + padding-bottom: 1ex; +} |