diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-12-12 07:01:27 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-12-12 07:01:27 +0100 |
commit | 453f882db8c4accc2a65a8c49652c1ca7f7b2eb8 (patch) | |
tree | 3b3cb1f2370b56116fe0877eedbb83994f5ce56b /sass | |
parent | b4d060e8f8f36a1befa42d60dbf328114d60eee7 (diff) |
distinguish arrival-only trains from departures
Diffstat (limited to 'sass')
-rw-r--r-- | sass/app.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sass/app.scss b/sass/app.scss index 4abc309..ae793b9 100644 --- a/sass/app.scss +++ b/sass/app.scss @@ -391,6 +391,22 @@ div.app li .dest { color: $fg; } +div.app li .origin { + background-color: transparent; + font-size:4em; + position:absolute; + top:0.62em; + left:4em; + bottom:0px; + width: 70%; + overflow: hidden; + color: $fg2; + + &:before { + content: "von "; + } +} + div.app li.cancelled { background-color: $cancelled-bg-color; } |