diff options
author | Daniel Friesel <derf@finalrewind.org> | 2016-10-26 20:53:41 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2016-10-26 20:53:41 +0200 |
commit | 4aec7fa70370fcb33ee8c6206427824fd7d46b96 (patch) | |
tree | b0d45aca68499cae0ac15cdad0e87dc7aebdd8fa | |
parent | 737cac7c2c8da1000159f79ab95dc8c9ca2252bc (diff) |
infoscreen: Fix texts flowing into each other on small screens
-rw-r--r-- | public/static/infoscreen.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/public/static/infoscreen.css b/public/static/infoscreen.css index 0663bf7..c2415be 100644 --- a/public/static/infoscreen.css +++ b/public/static/infoscreen.css @@ -15,6 +15,8 @@ div.displayclean > ul { position:absolute; width:100%; + background-color: inherit; + list-style-type:none; margin:0; padding:0; @@ -26,6 +28,7 @@ div.displayclean > ul > li { border-bottom: 1px solid #999999; width:100%; position:relative; + background-color: inherit; } div.displayclean li .line { @@ -80,7 +83,6 @@ div.displayclean li .dest { left:2.5em; bottom:-0.1em; width: 70%; - z-index: 1; overflow: hidden; } @@ -90,10 +92,12 @@ div.displayclean li.cancelled { div.displayclean li .countdown { color:#000000; + background-color: inherit; font-size:3em; position:absolute; right:5px; bottom:2px; + padding-left: 0.2em; } div.displayclean li .header { @@ -113,15 +117,18 @@ div.displayclean li .head { div.displayclean li .countdown .delay { font-size: 1em; color:#FF0000; + background-color: inherit; padding-right:7px; } div.displayclean li > .time { color:#444444; + background-color: inherit; font-size: 2.4em; position:absolute; right:5px; top:5px; + padding-left: 0.2em; } div.displayclean li > .time > .platform { |