aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-03-19 02:25:51 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2020-03-19 02:25:51 +0100
commit81b785cf2dd91326c36efa6c8a3d61d627cdbd53 (patch)
treedc4811f3f47675df1d2901eb62ae1752de73d6fa /static
parentUpdate html code to use with-streams. (diff)
downloadcalp-81b785cf2dd91326c36efa6c8a3d61d627cdbd53.tar.gz
calp-81b785cf2dd91326c36efa6c8a3d61d627cdbd53.tar.xz
Start implementing html table output.
Diffstat (limited to 'static')
-rw-r--r--static/style.css15
1 files changed, 15 insertions, 0 deletions
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 {