From 81b785cf2dd91326c36efa6c8a3d61d627cdbd53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 19 Mar 2020 02:25:51 +0100 Subject: Start implementing html table output. --- static/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'static') diff --git a/static/style.css b/static/style.css index 2db25af2..11565ff7 100644 --- a/static/style.css +++ b/static/style.css @@ -114,6 +114,21 @@ body { max-width: calc(100% - 20em); display: flex; flex-direction: column; + flex-grow: 1; +} + +main table { + width: 100%; + height: 90%; /* TODO */ + border-collapse: collapse; +} + +main table thead { + height: 1em; +} + +main table td { + width: calc(100%/7); } .calendar { -- cgit v1.2.3