commit 446ec12de8a873b69b0a0bb0cc32937f16a1d8c3
parent 176d2526118be530d924c6a5fa07b26b7e370512
Author: Sven Möller <sven-moeller@outlook.de>
Date: Sat, 1 Jan 2022 22:46:27 +0100
Update css
Diffstat:
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/static/style.css b/static/style.css
@@ -5,7 +5,7 @@ body {
font-family: monospace;
}
-h1,h2 {
+h1,h2,h3 {
color: #EF6C01;
}
@@ -17,6 +17,10 @@ h2:before {
content: "## ";
}
+h3:before {
+ content: "### ";
+}
+
a:before {
content: "["
}
@@ -58,9 +62,26 @@ ul li::before {
color: #DAA521
}
+code {
+ background: #8C8C8C;
+}
+
+pre code {
+ background: black;
+}
+
+pre {
+ margin-left: 50px;
+ font:125% monospace;
+}
+
@media (prefers-color-scheme: dark) {
body {
background: black ;
color: white ;
}
+
+ pre code {
+ background: black;
+ }
}