mkogg.py: Fix 'self.get_mp4_metadata(self, source)'
[blog.git] / local.css
index 7661fd2831649d9d537f5c3979948a15aee6a8b9..5cce312aca5e2f6681178ef694ebf97e1026f617 100644 (file)
--- a/local.css
+++ b/local.css
-/* 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
  */
 
-body { background: #e7e7e7; }
+@font-face {
+       font-family: Pecita;
+       src: url("/font/Pecita-reduced.woff") format("woff");
+       /* http://pecita.eu/police-en.php */
+}
+
+body {
+       background: #e7e7e7;
+}
+
+#content {
+       background: #ffffff;
+       margin: 10px 0px;
+       padding: 10px;
+       font-family: sans-serif;
+}
+
+.header {
+       background: #4b6983;
+       padding: 10px;
+       color: #ffffff;
+       font-family: Pecita, sans-serif;
+}
+
+.header a {
+       margin-right: 1ex;
+       color: #ffffff;
+}
+
+.actions ul {
+       border: none;
+       padding-bottom: 0px;
+       font-family: sans-serif;
+}
 
-#content { background: #ffffff; margin: 10px 0px; border: 2px solid #c0c0c0; padding: 10px; font-family: sans-serif;}
+#footer {
+       border: none;
+       font-family: sans-serif;
+}
 
-.header { background: #4b6983; border: 2px solid #7590ae; padding: 10px; color: #ffffff; font-family: sans-serif;}
-.header a { margin-right: 1ex; color: #ffffff; font-family: sans-serif;}
+.scaled {
+       width: 100%;
+       height: auto;
+}
 
-.actions ul { border: none; padding-bottom: 0px; font-family: sans-serif;}
-#footer { border: none; font-family: sans-serif;}
+.header {
+       border-radius: 1em;
+}
 
-#sidebar {
-  border: solid;
-  border-width: 1px;
-  padding: 0;
-  margin-top: 15px;
-  border: 1px solid;
-  border-color: #aaa;
-  background: #eee;
-  width: 16ex;
+.sidebar {
+       border: none;
+       padding: 0;
+       margin-top: 10px;
+       background: #e7e7e7;
+       width: 18ex;
+       border-bottom-left-radius: 1em;
 }
 
 .sidebar ul {
-  margin-left: 0;
-  padding: 0;
-  list-style-type: none;
+       margin-left: 1em;
+       padding: 0;
+       list-style-type: none;
 }
 
 .sidebar ul ul {
-  padding-left: 1em;
+       padding-left: 1em;
 }
 
 .sidebar .pagecloud {
-    float: none;
-    width: auto;
-    margin-bottom: 1em;
+       float: none;
+       width: auto;
+       border: none;
+       background: none;
+}
+
+#content {
+       border-radius: 0.5em;
+}
+
+.inlinepage {
+       border: none;
+}
+
+code {
+       color: gray;
+       font-family: monospace;
+}
+
+.center {
+       margin-left: auto;
+       margin-right: auto;
 }