From 31c0c0f3461896e9b78973bf0a00154cbfe07eb9 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 27 Mar 2023 17:42:39 -0400 Subject: [PATCH] color change --- webcit-ng/static/css/webcit.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/webcit-ng/static/css/webcit.css b/webcit-ng/static/css/webcit.css index 8395a94a5..aa9ef894a 100644 --- a/webcit-ng/static/css/webcit.css +++ b/webcit-ng/static/css/webcit.css @@ -171,7 +171,7 @@ html,body,h1,h2,h3,h4,h5 { } .ctdl-forum-reading-pane { - background-color: DarkSlateGrey; /* Background behind the message boxes */ + background-color: White; /* Background behind the message boxes */ } .ctdl-fmsg-wrapper { /* message wrapper for forum view */ @@ -180,6 +180,9 @@ html,body,h1,h2,h3,h4,h5 { background-color: White; margin: 1vw; padding: 5px; /* inside the box */ + border-radius: 10px; + border-style: outset; + border-width: thin; } .ctdl-mmsg-wrapper { /* message wrapper for mailbox view */ @@ -381,10 +384,11 @@ blockquote pre { overflow: hidden; border-radius: 10px; border-style: outset; + border-width: thin; background-color: White; padding: 0.3vw; margin-top: 0; - margin-bottom: 0.25vw; + margin-bottom: 0.1vw; margin-left: 1vw; margin-right: 1vw; } -- 2.39.2