]> git.mxchange.org Git - friendica-addons.git/commitdiff
Coloured box added
authorloma-one <loma-one@noreply.git.friendi.ca>
Sat, 16 Sep 2023 14:54:54 +0000 (16:54 +0200)
committerHypolite Petovan <hypolite@mrpetovan.com>
Fri, 8 Dec 2023 19:50:22 +0000 (20:50 +0100)
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

index 8b3282fb77a9fc5eff2d87a9bf9f25dfb2216ca5..17ad64c192c6cdcb4deab27df46e11062adc0010 100644 (file)
        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;
+}