From 589ad886ad4bb833fe00309fe5c2a455b5d8549d Mon Sep 17 00:00:00 2001 From: Pagwin Date: Fri, 25 Oct 2024 18:15:18 -0400 Subject: [PATCH] added border to layout due to it shifting text a bit --- static/css/layout.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/css/layout.css b/static/css/layout.css index 71a58df..f37bf17 100644 --- a/static/css/layout.css +++ b/static/css/layout.css @@ -33,7 +33,9 @@ a:hover { /*https://ux.stackexchange.com/a/34125*/ /*https://ux.stackexchange.com/a/34148*/ /*https://pearsonified.com/golden-ratio-typography-intro/*/ + /*https://grtcalculator.com/*/ max-width: 55em; + border: 0.5em solid; border-radius: 0.5em; /* needed due to being flex itself*/ @@ -72,3 +74,8 @@ pre { hr { width: 100%; } + +p { + /*https://pearsonified.com/golden-ratio-typography-intro/ is where this came from and tbh having a bigger line height does make things more readable although I tune it down a bit*/ + line-height: 1.5; +}