]> git.plutz.net Git - shellwiki/commitdiff
css for toc macro, basic attachment list, some improvements in page structure
authorPaul Hänsch <paul@plutz.net>
Thu, 24 Mar 2022 11:43:05 +0000 (12:43 +0100)
committerPaul Hänsch <paul@plutz.net>
Thu, 24 Mar 2022 11:43:05 +0000 (12:43 +0100)
themes/default.css

index 864d966ab2959692ae5569289fa39b28c5e20da0..baeeee6c793418fd98619dd7aab3b59fd7cd0493 100644 (file)
@@ -1,37 +1,36 @@
-html {
-  min-height: 100%;
-}
+html { min-height: 100%; }
 
 body {
   position: absolute;
   width: 100%;
   min-height: 100%;
-}
-
-footer {
-  position: absolute;
-  bottom: 0;
+  padding-bottom: 6em;
 }
 
 header, footer {
+  background-color: #FFF;
   box-shadow: 0 0 .75em;
   width: 100%;
   z-index: 1;
-  background-color: inherit;
 }
 
-header :last-child, main :last-child {
-  margin-bottom: 0;
+footer {
+  position: absolute;
+  bottom: 0;
 }
 
-header h2, header .menu {
-  display: inline-block;
+header :last-child,
+main :last-child {
+  margin-bottom: 0;
 }
 
+header h2,
 header .menu {
-  list-style: none;
+  display: inline-block;
 }
 
+header .menu { list-style: none; }
+
 header .menu li {
   display: inline-block;
   margin-right: .5em;
@@ -48,11 +47,54 @@ main .pagemenu li {
   display: inline-block;
   margin-right: 1em;
 }
-main .pagemenu li a {
-  color: #FFF;
+main .pagemenu li a { color: #FFF; }
+
+main article {
+  margin: 1em;
+  padding: .125em 1em 1em 1em;
+  box-shadow: .25em .25em .75em;
 }
 
+
+/* === Editor === */
+
 body.editor textarea {
   width: 100%;
   min-height: 20em;
 }
+
+/* === Attachments === */
+
+.attachment.list .size,
+.attachment.list .date {
+  font-size: .875em;
+  top: -.25em;
+}
+
+.attachment.list .name:after {
+  white-space: pre-line;
+  content: "\0a";
+}
+.attachment.list .size {
+  margin-right: 1em;
+}
+
+
+/* === Macros === */
+
+.macro.toc {
+  display: inline-block;
+  list-style-position: inside;
+  margin-left: 0;
+  background-color: #DDD;
+  background-color: rgba(0, 0, 0, .125);
+  padding: .75em 1em;
+  border: 1pt solid;
+  border-radius: 2pt;
+}
+.macro.toc li.h2 { margin-left: 1.25em; }
+.macro.toc li.h3 { margin-left: 2.5em; }
+.macro.toc li.h4 { margin-left: 3.75em; }
+.macro.toc li.h5 { margin-left: 5em; }
+.macro.toc li.h6 { margin-left: 6.25em; }
+