From 36be6b51ae1a538e48637b8f17d7d642e2897a7f Mon Sep 17 00:00:00 2001 From: trotFunky Date: Fri, 26 Jul 2024 19:52:02 +0100 Subject: [PATCH] style: Update truth titles, change style of hr Center the truth titles and add a border with the body, padding accordingly. To no overload the page and maintain connection, make the hr dotted and match the color. --- static_files/style.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/static_files/style.css b/static_files/style.css index f6cc018..edc39a7 100644 --- a/static_files/style.css +++ b/static_files/style.css @@ -23,6 +23,12 @@ padding-bottom: 2em; } +.individual_truth > h3 { + text-align: center; + padding-bottom: 4px; + border-bottom: slategray solid 0.15em; +} + .editor { width: calc(100% - 1.25em); /* The width is calculated *inside* the padding, so adjust for it. */ height: 6eM; @@ -77,8 +83,8 @@ hr { border: none; - border-top: 2px solid #9ec5fe; - color: #9ec5fe; + border-top: 2px dotted slategray; + color: slategray; overflow: visible; text-align: center; height: 5px;