aboutsummaryrefslogtreecommitdiff
path: root/static/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css54
1 files changed, 54 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
new file mode 100644
index 0000000..f97e102
--- /dev/null
+++ b/static/styles.css
@@ -0,0 +1,54 @@
+/* this is a template file that gets formatted by python str.format()
+ * so these double-braces get interpreted to just single ones.
+ */
+#main {
+ float: left;
+ margin: 0 0 2em 4em;
+ padding-bottom: 4em;
+ width: auto;
+}
+
+#header_sub { margin-left: 6em; }
+#sidebar {
+ /*float: right;*/
+ padding: 0 2.5em 2.5em 0;
+ position: fixed;
+ top: 0px;
+ right: 0px;
+ background-color: #eee;
+ border-style: dashed;
+ border-width: 0px 0px 1px 1px;
+ border-color: #ddd;
+}
+footer {
+ position: fixed;
+ text-align: center;
+ bottom: 0;
+ width: 100%;
+ padding: 0.25em;
+ background: #f5f5f5;
+}
+
+pre {
+ background-color: #ddd;
+}
+
+body, input, select, textarea {
+ font-size: 10pt;
+}
+.box {
+ height: 0;
+ display: none;
+ transition:all 0.8s linear;
+}
+input:checked ~ .box {
+ display: inline;
+}
+
+label#toggle {
+ font-size: 80%;
+ cursor: pointer;
+ color: blue;
+ text-decoration: underline;
+}
+
bgstack15