From 6db04d7b3596b08857a5c18412943fdaeb1a7131 Mon Sep 17 00:00:00 2001 From: Leo Gavilieau Date: Sat, 20 May 2023 20:46:07 +0200 Subject: [PATCH] feat: make borders less thick and curvy As suggested by vitorg --- static/style.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/static/style.css b/static/style.css index 05d1ce8..82fe1bd 100644 --- a/static/style.css +++ b/static/style.css @@ -52,9 +52,9 @@ header,main,footer { /* Header styling (logo, nav etc.) */ header { - border-bottom: 4px solid var(--linkColor); - border-radius: 1rem; - padding-bottom:1rem; + border-bottom: 2px solid var(--linkColor); + border-radius: 0.5rem; + padding-bottom:0.5rem; } #logo { @@ -66,9 +66,9 @@ header { } footer { - border-top: 4px solid var(--linkColor); - border-radius: 1rem; - padding-top:1rem; + border-top: 2px solid var(--linkColor); + border-radius: 0.5rem; + padding-top:0.5rem; } footer p { margin: 0.2em 0 0.2em 0; }