From 19ec7d1cec9b07b12c475d94ecdf022712d0bc9b Mon Sep 17 00:00:00 2001 From: ch0ccyra1n Date: Tue, 28 Feb 2023 14:57:14 -0800 Subject: [PATCH] improved legibility for code blocks in light mode --- static/css/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 35304f5..9992485 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -35,8 +35,8 @@ color: #FF535D; } pre, code { - background-color: #A9A2A2; - color: #1f2023; + background-color: #3B3C43; + color: #E7DBDA; } .author-name { background-color: #000000; @@ -126,6 +126,7 @@ li:first-child { list-style-type: none; } +/* For normal screens */ @media screen and (min-width: 769px) { #nav-toggle-mobile { display: none; @@ -135,6 +136,7 @@ li:first-child { } } +/* For super wide screens */ @media screen and (min-width: 1700px) { #nav-list { width: 17%; @@ -144,6 +146,7 @@ li:first-child { } } +/* For mobile */ @media screen and (max-width: 768px) { #content { margin: 10%;