diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-05-30 18:03:49 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-05-30 18:03:49 +0200 |
commit | dfbbf9fead33864c196ec6097b5360bfb45b610b (patch) | |
tree | 465edec4e6c18cbdfa94d96348a3c6cb1090cbab /static | |
parent | 886b9e56dc515c6536129711494f91262d402214 (diff) |
proper departure list and css
Diffstat (limited to 'static')
-rw-r--r-- | static/v0/css/wip.css | 53 |
1 files changed, 49 insertions, 4 deletions
diff --git a/static/v0/css/wip.css b/static/v0/css/wip.css index e3efc2a..965f5ec 100644 --- a/static/v0/css/wip.css +++ b/static/v0/css/wip.css @@ -36,28 +36,63 @@ ul.departures > li { background-color: white; } +ul.departures > li.cancelled { + background-color: #ffe7d0; +} + ul.departures li .line { position: absolute; - bottom: 5px; + bottom: 0; left: 2px; max-width: 6em; max-height: 3ex; + max-width: 4em; overflow: hidden; font-size: 150%; + background-color: #eeeeee; + font-weight: bold; + padding-left: 0.1em; + padding-right: 0.1em; +} + +ul.departures li .tram { + background-color:#ffcccc; +} + +ul.departures li .suburban { + background-color:#aaffba; + border-radius: 30px; +} + +ul.departures li .subway { + background-color:#aac0ff; +} + +ul.departures li .bus { + background-color:#eeaaee; + border-radius: 10px; } ul.departures li .dest { position: absolute; - top: 0.5ex; + bottom: 0; left: 4em; - bottom: 0px; width: 70%; overflow: hidden; background-color: transparent; - font-size: 200%; + font-size: 160%; color: black; } +ul.departures li .destsuffix { + position: absolute; + top: 1px; + left: 6.5em; + width: 70%; + height: 1.2em; + overflow: hidden; +} + ul.departures li .time { position: absolute; right: 5px; @@ -68,6 +103,16 @@ ul.departures li .time { color: black; } +ul.departures li .platform { + position: absolute; + bottom: 0; + right: 5px; + overflow: hidden; + background-color: transparent; + font-size: 150%; + color: black; +} + @media only screen and (max-width: 600px) { ul.departures > li { font-size: 85%; |