From 7374c2a0ed61300e9b7190ff07f36531686a6365 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sun, 25 Apr 2021 14:52:56 -0400 Subject: [PATCH] style: Reduce font size on small screens (mobile) Experimenting with font sizes. I think this will aid readability on mobile (old font was a TAD too large). --- style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style.css b/style.css index 232f7ad..7071163 100644 --- a/style.css +++ b/style.css @@ -39,6 +39,11 @@ b,i { color: #000000 } } } +/* Smaller font on small screens */ +@media only screen and (max-width: 599px) { + body { font-size: 1.1em; } +} + /* margins around head/foot */ table.foot { margin-top: 3em; } table.head { margin-bottom: 3em; } -- libgit2 1.1.1