summaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
authorfrosty <passedgoadngot200@disroot.org>2025-09-16 18:18:10 -0400
committerfrosty <passedgoadngot200@disroot.org>2025-09-16 18:18:10 -0400
commit01a2f10cfa100996e18e52f245f0be2baf545a00 (patch)
tree3bbadf32a6511cb1d26e98f3496e1331f065b91c /static/style.css
downloadwww-01a2f10cfa100996e18e52f245f0be2baf545a00.tar.gz
www-01a2f10cfa100996e18e52f245f0be2baf545a00.zip
initial commit
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;
+}