summaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css66
1 files changed, 66 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..caa8305
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,66 @@
+body {
+ margin: 0 auto;
+ max-width: 50em;
+ font-family: system-ui, sans-serif;
+ font-weight: normal;
+ background: #090909;
+ color: #ffffff;
+}
+
+a {
+ color: #ee82ee;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+hr {
+ border: none;
+ border-bottom: 1px #d3d3d3 dotted;
+}
+
+main h1,
+main h2,
+main h3 {
+ border-bottom: 1px #d3d3d3 dotted;
+}
+
+header {
+ height: 64px;
+ margin: 1em 0;
+}
+
+header .links a {
+ color: #ffffff;
+}
+
+header .links {
+ margin-left: 0.5em;
+}
+
+header img,
+header .links {
+ display: inline-block;
+ vertical-align: middle;
+}
+
+header .title {
+ font-size: 1.5em;
+ font-weight: bold;
+}
+
+.blog-item {
+ padding: 0.5em;
+ background: #191919;
+ margin: 1em 0;
+}
+
+.blog-item span {
+ color: #d3d3d3;
+}
+
+pre {
+ padding: 0.25em;
+}