From: Paul Hänsch Date: Mon, 21 Mar 2022 14:02:55 +0000 (+0100) Subject: theme css X-Git-Url: https://git.plutz.net/?a=commitdiff_plain;h=e9681856866f504bccfdd074c11f9d60524940c4;p=shellwiki theme 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; +}