From df427ba41658ee70224b398ea35834e602cc1b65 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 14 Nov 2023 11:33:01 -0500 Subject: [PATCH] css: tighten mobile display a little --- style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/style.css b/style.css index 3f1cb37..f28304f 100644 --- a/style.css +++ b/style.css @@ -68,3 +68,14 @@ table#homepage { padding-top: 3em; padding-bottom: 3em; } + +/* Mobile (i.e. phones) */ +@media only screen and (max-width: 768px) { +body { + margin: 0px; +} + +table#homepage { + font-size: x-small; +} +} -- 2.39.2