summaryrefslogtreecommitdiff
path: root/public/style.css
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-01-13 17:41:02 -0600
committersanine <sanine.not@pm.me>2022-01-13 17:41:02 -0600
commit0ff62ea7886bdeff160682d3d5713c2c8a6dd4b1 (patch)
treec70d31f35c1e54a7fc01246eb6740d79aef0ccd0 /public/style.css
initial commit
Diffstat (limited to 'public/style.css')
-rw-r--r--public/style.css44
1 files changed, 44 insertions, 0 deletions
diff --git a/public/style.css b/public/style.css
new file mode 100644
index 0000000..f43e73d
--- /dev/null
+++ b/public/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;
+}