From 79ca764d52e59113c333af62114222c645d33726 Mon Sep 17 00:00:00 2001 From: CrispyPin Date: Sun, 26 May 2024 22:29:24 +0200 Subject: [PATCH] mobile frenly width --- site/style.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/site/style.css b/site/style.css index bc32d34..81372c4 100644 --- a/site/style.css +++ b/site/style.css @@ -1,6 +1,7 @@ html { color-scheme: dark; font-family: sans-serif; + background-color: #111; } main { @@ -8,6 +9,11 @@ main { background-color: #222; margin: auto; padding: 2px 32px 32px; - border-left: 4px solid #d39; - border-right: 4px solid #d39; + border-left: 4px solid #d3f; +} + +@media screen and (max-width:900px) { + main { + width: calc(100% - 82px); + } } \ No newline at end of file