diff options
author | Daniel Friesel <derf@finalrewind.org> | 2014-08-20 17:22:57 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2014-08-20 17:22:57 +0200 |
commit | 67293b98b51c7287e7bd93715d3324b2bc64b529 (patch) | |
tree | ae967c2f25eb01e10305a7a60dc07af677e25253 /cgi/public/display.css | |
parent | f914f3882c416891ca0e5c5475b837a6a4aecd32 (diff) |
Do not use inline CSS, update jquery while at it
Diffstat (limited to 'cgi/public/display.css')
-rw-r--r-- | cgi/public/display.css | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/cgi/public/display.css b/cgi/public/display.css new file mode 100644 index 0000000..44fd4a6 --- /dev/null +++ b/cgi/public/display.css @@ -0,0 +1,47 @@ +@font-face { + font-family: VRRR; + src: url('/VRRR.ttf'); +} + +body { + font-family: VRRR; + background-color: #000000; +} + +div.outer { + width: 12em; + margin-left: auto; + margin-right: auto; +} + +div.row { + position: relative; + margin-bottom: 0; + margin-top: 0; + padding-bottom: 0; + padding-top: 0; + width: 12em; + height: 0.68em; +} + +div.row div { + overflow: hidden; + position: absolute; + height: 100%; +} + +div.line { + left: 0; + width: 13%; +} + +div.dest { + left: 14%; + width: 67%; +} + +div.time { + right: 0; + width: 19%; + text-align: right; +} |