From: Art Cancro Date: Mon, 27 Mar 2023 22:03:44 +0000 (-0400) Subject: Banished the DarkSlateGrey color in dead-space screen regions. X-Git-Tag: v976~67 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=0b618fa91e3a55efeae59c1483aec1ecb0b7f124;p=citadel.git Banished the DarkSlateGrey color in dead-space screen regions. --- 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 {