From f41f5142c9cd25c5b39d9f05efd352025ab75056 Mon Sep 17 00:00:00 2001 From: trotFunky Date: Fri, 26 Jul 2024 00:41:05 +0100 Subject: [PATCH] styles: Minor reorganization Properly split what is custom classes and regular HTML tags. --- static_files/style.css | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/static_files/style.css b/static_files/style.css index 2978081..57eb5dc 100644 --- a/static_files/style.css +++ b/static_files/style.css @@ -47,6 +47,18 @@ top: 25%; } +@media (orientation: portrait) { + .truth_list { + width: 60vw; + } + + .graph { + width: 35vw; + } +} + +/* Global styling */ + hr { border: none; border-top: 2px solid #9ec5fe; @@ -74,13 +86,3 @@ body { body > h2 { padding-left: 0.25eM; } - -@media (orientation: portrait) { - .truth_list { - width: 60vw; - } - - .graph { - width: 35vw; - } -}