From 1ebac333e8ade639e4f40eb4b748017b9a43ee66 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sun, 12 Dec 2021 19:28:58 +0100 Subject: [PATCH] add: basic style --- cal.css | 8 ++++++++ index.html | 1 + 2 files changed, 9 insertions(+) create mode 100644 cal.css diff --git a/cal.css b/cal.css new file mode 100644 index 0000000..9b625b1 --- /dev/null +++ b/cal.css @@ -0,0 +1,8 @@ +table, th, td { + border: solid 1px black; + border-collapse: collapse; +} + +th:nth-child(even) { + background-color: lightgray; +} diff --git a/index.html b/index.html index d0566d5..8e1b295 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,7 @@ Kalender + -- 2.39.5