From ccdc99dbb1b791a4e63951211a9ce71f03232cf1 Mon Sep 17 00:00:00 2001 From: Leo Gavilieau Date: Sun, 21 May 2023 22:26:58 +0200 Subject: [PATCH] fix(style): fix styling for tables --- static/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/style.css b/static/style.css index 82fe1bd..df4ac54 100644 --- a/static/style.css +++ b/static/style.css @@ -49,6 +49,13 @@ header,main,footer { width: var(--mainSize); } +table, td { + border: 1px outset; + padding: 5px +} + +table { border-collapse: collapse; } + /* Header styling (logo, nav etc.) */ header { @@ -69,6 +76,7 @@ footer { border-top: 2px solid var(--linkColor); border-radius: 0.5rem; padding-top:0.5rem; + margin-top: 3rem !important; } footer p { margin: 0.2em 0 0.2em 0; }