From b48099585c3b9dd6a250e934a133ec02dd489604 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Fri, 17 Dec 2021 18:45:41 +0100 Subject: [PATCH] add: better style --- cal.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/cal.css b/cal.css index 936e3b4..f3a9fd9 100644 --- a/cal.css +++ b/cal.css @@ -2,12 +2,20 @@ table { border-collapse: collapse; } -table .row.month th { +table th { + padding: 0.5em; + border: solid 1px black; +} + +table .row.month { color: white; background-color: gray; - border: solid 1px black; } table .row.monthday { background-color: lightgray; } + +table .row.weekday { + background-color: lightgray; +} -- 2.39.5