summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylan Kammer <taylan.kammer@gmail.com>2026-08-19 15:18:06 +0200
committerTaylan Kammer <taylan.kammer@gmail.com>2026-08-19 15:18:06 +0200
commit38351a16788c39484e0506fba3f6b762106a61c3 (patch)
tree254abc0883cef6aa1f1f7b47e950085102b8dabe
parent94f8cc3835f6eb8e1d364dd6b166fff75354ff2c (diff)
Fix CSS.
-rw-r--r--html/style.css6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/style.css b/html/style.css
index a62833d..da0a161 100644
--- a/html/style.css
+++ b/html/style.css
@@ -9,13 +9,13 @@ body {
font-family: sans-serif;
}
-@media screen and (max-width:960px) {
+@media screen and (width < 960px) {
body > ul:first-child {
display: none;
}
}
-@media screen and (min-width:961px) {
+@media screen and (width >= 960px) {
body {
margin-left: 260px;
}
@@ -53,7 +53,7 @@ td, th {
}
ul {
- padding-left: 1em;
+ padding-left: 16px;
}
@media (prefers-color-scheme: dark) {