Banished the DarkSlateGrey color in dead-space screen regions.
authorArt Cancro <ajc@citadel.org>
Mon, 27 Mar 2023 22:03:44 +0000 (18:03 -0400)
committerArt Cancro <ajc@citadel.org>
Mon, 27 Mar 2023 22:03:44 +0000 (18:03 -0400)
webcit-ng/static/css/webcit.css

index 269924ce7545b30ee2a8538298618bcbf89866ea..8bda814ff0d212f133f4b37fb14eab69859dfd20 100644 (file)
@@ -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 {