summaryrefslogtreecommitdiff
path: root/site_root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'site_root/style.css')
-rw-r--r--site_root/style.css44
1 files changed, 44 insertions, 0 deletions
diff --git a/site_root/style.css b/site_root/style.css
new file mode 100644
index 0000000..f43e73d
--- /dev/null
+++ b/site_root/style.css
@@ -0,0 +1,44 @@
+body {
+ color: #eee;
+ background: #1c1c1c;
+ font-family: monospace;
+ font-size: 16px;
+}
+
+#navigation {
+ text-align: center;
+}
+
+.centered {
+ text-align: center;
+}
+
+#content {
+ width: 600px;
+ max-width: 100%;
+ margin: auto;
+}
+
+a {
+ color: #ff3a21;
+}
+
+a:hover {
+ color: #1c1c1c;
+ background: #ff3a21;
+ text-decoration: none;
+}
+
+ul {
+ list-style: none;
+}
+
+li:before {
+ content: '* ';
+}
+
+code {
+ background: black;
+ padding: 0 6px;
+ border-radius: 4px;
+}