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
+21 -1
View File
@@ -60,7 +60,27 @@ body {
}
.section.bottom {
padding: 10px;
border-top: 1px solid #c2c2c2;
font-size: 16px;
font-size: 14px;
text-align: right;
}
@media (prefers-color-scheme: dark) {
body {
background: #1e1e1e;
}
.section {
color: white;
background: #2e2e2e;
}
.section.top {
border-color: #292929;
}
.section.bottom {
border-color: #292929;
}
}