From b80ea21d741cc77719289b795557647e9875a01a Mon Sep 17 00:00:00 2001 From: Ian Rose Date: Sat, 9 Nov 2024 22:11:56 -0500 Subject: [PATCH] try to tune font sizing --- cmd/webapp/static/css/allison.css | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/cmd/webapp/static/css/allison.css b/cmd/webapp/static/css/allison.css index 5e2c917..387ed79 100644 --- a/cmd/webapp/static/css/allison.css +++ b/cmd/webapp/static/css/allison.css @@ -10,14 +10,19 @@ body { margin: 0; } - body { - font-size: 2em; - } - @media screen and (min-width: 1600px) { - body { - font-size: 18px; - } - } +body { + font-size: 3em; +} +@media screen and (min-width: 1000px) { + body { + font-size: 2em; + } +} +@media screen and (min-width: 1200px) { + body { + font-size: 18px; + } +} .icon { vertical-align: middle;