From 0b618fa91e3a55efeae59c1483aec1ecb0b7f124 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 27 Mar 2023 18:03:44 -0400 Subject: [PATCH] Banished the DarkSlateGrey color in dead-space screen regions. --- webcit-ng/static/css/webcit.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/webcit-ng/static/css/webcit.css b/webcit-ng/static/css/webcit.css index 269924ce7..8bda814ff 100644 --- a/webcit-ng/static/css/webcit.css +++ b/webcit-ng/static/css/webcit.css @@ -21,9 +21,9 @@ grid-template-areas: 'ctdl-mg-banner ctdl-mg-banner' 'ctdl-mg-menu ctdl-mg-main'; - gap: 1px; - background-color: DarkSlateGrey; /* This is the color of the lines between the boxes, and also the boxes themselves if not overridden */ - padding: 0; /* This is the border around the edges of the screen */ + gap: 1px; /* This is the thickness of the lines between the boxes */ + background-color: DarkSlateGrey; /* This is the color of the lines between the boxes */ + padding: 0; /* This is the border around the edges of the screen (0 for no border) */ width: 100vw; height: 100vh; } @@ -42,6 +42,7 @@ grid-area: ctdl-mg-main; overflow-x: hidden; overflow-y: auto; + background-color: GhostWhite; } .ctdl-main-grid-container > div { -- 2.39.2