]> git.plutz.net Git - shellwiki/commitdiff
theme css
authorPaul Hänsch <paul@plutz.net>
Mon, 21 Mar 2022 14:02:55 +0000 (15:02 +0100)
committerPaul Hänsch <paul@plutz.net>
Mon, 21 Mar 2022 14:02:55 +0000 (15:02 +0100)
themes/default.css [new file with mode: 0644]

diff --git a/themes/default.css b/themes/default.css
new file mode 100644 (file)
index 0000000..864d966
--- /dev/null
@@ -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;
+}