From c407c016750b23ac74ad51360b228ea5ae5eda2e Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 24 Aug 2022 01:31:17 +0200 Subject: [PATCH] Increased body width on larger displays and slight decreased code font size --- public/main.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/public/main.css b/public/main.css index 38c6fd8..e666a7a 100644 --- a/public/main.css +++ b/public/main.css @@ -39,6 +39,12 @@ body { max-width: 42rem; } +@media only screen and (min-width: 1024px) { + body { + max-width: 60rem; + } +} + img { max-width: 100%; height: auto; @@ -50,7 +56,7 @@ b, strong { code, kbd, samp, pre { font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; - font-size: 1rem; + font-size: 0.9em; background-color: var(--black) !important; }