From e9681856866f504bccfdd074c11f9d60524940c4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Paul=20H=C3=A4nsch?= Date: Mon, 21 Mar 2022 15:02:55 +0100 Subject: [PATCH] theme css --- themes/default.css | 58 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 themes/default.css diff --git a/themes/default.css b/themes/default.css new file mode 100644 index 0000000..864d966 --- /dev/null +++ b/themes/default.css @@ -0,0 +1,58 @@ +html { + min-height: 100%; +} + +body { + position: absolute; + width: 100%; + min-height: 100%; +} + +footer { + position: absolute; + bottom: 0; +} + +header, footer { + box-shadow: 0 0 .75em; + width: 100%; + z-index: 1; + background-color: inherit; +} + +header :last-child, main :last-child { + margin-bottom: 0; +} + +header h2, header .menu { + display: inline-block; +} + +header .menu { + list-style: none; +} + +header .menu li { + display: inline-block; + margin-right: .5em; +} + +main .pagemenu { + list-style: none; + background-color: #666; + margin: 0; + box-shadow: 0 0 .5em; + padding: .25em 2em; +} +main .pagemenu li { + display: inline-block; + margin-right: 1em; +} +main .pagemenu li a { + color: #FFF; +} + +body.editor textarea { + width: 100%; + min-height: 20em; +} -- 2.39.2