From 727eca1ce7797f818a5a0aa0b445283dced09205 Mon Sep 17 00:00:00 2001 From: loma-one Date: Sat, 16 Sep 2023 16:54:54 +0200 Subject: [PATCH] Coloured box added Among other things, I use the page header to inform about current maintenance work or other upcoming work. The information should therefore be provided within an appropriate framework. With a little CSS, the page header gets a frame in green. The font was adjusted to an appropriate size. --- pageheader/pageheader.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pageheader/pageheader.css b/pageheader/pageheader.css index 8b3282fb..17ad64c1 100644 --- a/pageheader/pageheader.css +++ b/pageheader/pageheader.css @@ -21,3 +21,13 @@ margin-top: 25px; font-size: 20px; } + +/* The pageheader box */ +.pageheader { + padding: 20px; + background-color: #2eb885; /* Green */ + color: white; + border: 1px solid transparent; + border-radius: 2px; + margin-bottom: 15px; +}