aboutsummaryrefslogtreecommitdiff
path: root/static/css/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/style.css')
-rw-r--r--static/css/style.css53
1 files changed, 53 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
new file mode 100644
index 0000000..3ef4259
--- /dev/null
+++ b/static/css/style.css
@@ -0,0 +1,53 @@
+body {
+ font-family: 'Eurofur', sans-serif;
+ margin: 5% 10%;
+ color: #222;
+}
+a {
+ color: #05A;
+ text-decoration: none;
+}
+pre, code, textarea {
+ font-family: 'Monofur', monospace;
+}
+pre {
+ line-height: 120%;
+ border: thin solid #CDE;
+ overflow: auto;
+ padding: 1ex 2ex;
+}
+hr {
+ color: #CDE;
+}
+img, pre {
+ border-radius: 1ex;
+}
+blockquote {
+ border-left: thick solid #CCC;
+ margin-left: 1ex;
+ padding-left: 2ex;
+}
+dd {
+ padding-bottom: 1em;
+}
+nav {
+ float: right;
+}
+nav a, nav span {
+ padding: 1ex;
+}
+nav span {
+ text-align: right;
+ font-size: large;
+ font-weight: bold;
+ color: #F50;
+}
+td {
+ padding: 0 1em;
+}
+tr:nth-child(even) {
+ background: #FFF;
+}
+tr:nth-child(odd) {
+ background: #EEE;
+}