summaryrefslogtreecommitdiff
path: root/static/css/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/style.css')
-rw-r--r--static/css/style.css41
1 files changed, 30 insertions, 11 deletions
diff --git a/static/css/style.css b/static/css/style.css
index e900c8c..f4c32fa 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -1,13 +1,3 @@
-@media (prefers-color-scheme: dark){
- body {
- background:#000;
- color: white;
- }
-
- .content a {
- color: black;
- }
-}
body{
margin: 0;
font:1.2em/1.62 sans-serif
@@ -46,9 +36,38 @@ h1,h2,h3 {
}
.content a {
- color: white;
+ color: black;
}
.content a:hover {
color: #069;
}
+
+@media (prefers-color-scheme: dark){
+ body {
+ background:#000;
+ color: white;
+ }
+
+ .content a {
+ color: white;
+ }
+}
+
+article h1 {
+ margin-bottom: 0.1em;
+}
+
+article p {
+ margin-top: 0;
+}
+
+article h4 {
+ margin-bottom: 0.1em;
+}
+
+.post {
+ max-width: 700px;
+ margin: 2rem auto;
+ padding: 1.5rem;
+}