added dark mode and margin changes

This commit is contained in:
David Meincke
2022-03-22 22:14:38 +01:00
parent 31722d4bf4
commit f25f3daf7f
8 changed files with 92 additions and 15 deletions
+10 -2
View File
@@ -11,6 +11,14 @@ html, body {
body {
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
background-color: #e3e3e3;
margin: 10px;
background-color: #f0f0f0;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #272727;
color: white;
}
}