From 582bc6b91850daf104147473e5f7508beba2d539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 22 Apr 2019 12:14:11 +0200 Subject: Add CSS. --- module/html/html.scm | 2 +- static/style.css | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+), 1 deletion(-) create mode 100644 static/style.css diff --git a/module/html/html.scm b/module/html/html.scm index 5ad98b0a..51de18aa 100644 --- a/module/html/html.scm +++ b/module/html/html.scm @@ -36,7 +36,7 @@ (if (null? ev-list) #f (let* ((pred? (lambda (next) - (time<=? (attr next 'DTSTART) + (time :first-child { + margin-left: 6ex; +} + +.day { + position: relative; + + height: 100%; + width: 100%; + min-width: 300px; + + margin-left: 0.5em; + border: 1px solid black; +} + +.meta { + position: absolute; + height: 50px; + top: -50px; + + width: 100%; + +} + +.meta .dayname { + font-size: 2em; +} + +.event { + width: 100%; + + border-style: solid; + border-width: 2px; + + overflow: hidden; + + z-index: 0; +} + +.selected { + width: 100% !important; + left: 0 !important; + z-index: 1 !important; + + margin-top: 3mm; + margin-left: 3mm; +} + +#clock-0 { top: calc(100%/24 * 0); } +#clock-2 { top: calc(100%/24 * 2); } +#clock-4 { top: calc(100%/24 * 4); } +#clock-6 { top: calc(100%/24 * 6); } +#clock-8 { top: calc(100%/24 * 8); } +#clock-10 { top: calc(100%/24 * 10); } +#clock-12 { top: calc(100%/24 * 12); } +#clock-14 { top: calc(100%/24 * 14); } +#clock-16 { top: calc(100%/24 * 16); } +#clock-18 { top: calc(100%/24 * 18); } +#clock-20 { top: calc(100%/24 * 20); } +#clock-22 { top: calc(100%/24 * 22); } +#clock-24 { top: calc(100%/24 * 24); } -- cgit v1.2.3