posts:x.509: add certificate verification examples for OpenSSL and GnuTLS.
[mw2txt.git] / local.css
index 530f3cc971a7bfb7b06b5cca497c8bf73cc757cb..5cce312aca5e2f6681178ef694ebf97e1026f617 100644 (file)
--- a/local.css
+++ b/local.css
@@ -1,12 +1,17 @@
-/* Embedded Moose local.css for use with ikiwiki
- * Written by Josh Triplett <josh@freedesktop.org>
- * Some ideas from the Debian lighttpd index.html page.
- *
- * Editted by W. Trevor King <wking@drexel.edu> to support:
+/* Derived from Embedded Moose by Josh Triplett <josh@freedesktop.org>
+ * Edited by W. Trevor King <wking@tremily.us> to support:
  *   - Sidebars
  *   - <code>
+ *   - streamlined layout (fewer borders, etc.)
+ *   - added fun fonts
  */
 
+@font-face {
+       font-family: Pecita;
+       src: url("/font/Pecita-reduced.woff") format("woff");
+       /* http://pecita.eu/police-en.php */
+}
+
 body {
        background: #e7e7e7;
 }
@@ -14,23 +19,20 @@ body {
 #content {
        background: #ffffff;
        margin: 10px 0px;
-       border: 2px solid #c0c0c0;
        padding: 10px;
        font-family: sans-serif;
 }
 
 .header {
        background: #4b6983;
-       border: 2px solid #7590ae;
        padding: 10px;
        color: #ffffff;
-       font-family: sans-serif;
+       font-family: Pecita, sans-serif;
 }
 
 .header a {
        margin-right: 1ex;
        color: #ffffff;
-       font-family: sans-serif;
 }
 
 .actions ul {
@@ -49,19 +51,21 @@ body {
        height: auto;
 }
 
+.header {
+       border-radius: 1em;
+}
+
 .sidebar {
-       border: solid;
-       border-width: 1px;
+       border: none;
        padding: 0;
-       margin-top: 15px;
-       border: 1px solid;
-       border-color: #aaa;
-       background: #eee;
+       margin-top: 10px;
+       background: #e7e7e7;
        width: 18ex;
+       border-bottom-left-radius: 1em;
 }
 
 .sidebar ul {
-       margin-left: 0;
+       margin-left: 1em;
        padding: 0;
        list-style-type: none;
 }
@@ -71,39 +75,26 @@ body {
 }
 
 .sidebar .pagecloud {
-         float: none;
-         width: auto;
-         margin-bottom: 1em;
-}
-
-#sidebar {
-       border: solid;
-       border-width: 1px;
-       padding: 0ex 2ex;
-       margin-top: 15px;
-       border: 1px solid;
-       border-color: #aaa;
-       background: #eee;
-       width: 18ex;
-}
-
-#sidebar ul {
-       margin-left: 0;
-       padding: 0;
-       list-style-type: none;
+       float: none;
+       width: auto;
+       border: none;
+       background: none;
 }
 
-#sidebar ul ul {
-       padding-left: 1em;
+#content {
+       border-radius: 0.5em;
 }
 
-#sidebar .pagecloud {
-       float: none;
-       width: auto;
-       margin-bottom: 1em;
+.inlinepage {
+       border: none;
 }
 
 code {
        color: gray;
        font-family: monospace;
 }
+
+.center {
+       margin-left: auto;
+       margin-right: auto;
+}