From dbb22984e6af5eff1bfdea045f02009c38559650 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 4 Jan 2025 00:09:12 -0700 Subject: [PATCH] Fix code blocks overflow, improve header text color, improve mobile size --- static/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index 7624a3d..3acac94 100644 --- a/static/style.css +++ b/static/style.css @@ -3,7 +3,7 @@ --bg-text: #606060; --text: #ffffff; --header: #454545; - --header-text: #707070; + --header-text: #d3d3d3; --content-bg: #303030; --accent: #344a70; --link: #3e765d; @@ -27,6 +27,7 @@ pre { background-color: var(--bg); padding: 1rem; border-radius: var(--radius); + overflow: scroll; } .copy:hover { @@ -69,6 +70,8 @@ section { article { background-color: var(--content-bg); padding: 1.5rem; + padding-top: 1px; + padding-bottom: 1px; text-align: left; }