From 692b8849d91bad7d40a3a5045bb967731ee298af Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 11 May 2020 16:06:01 -0700 Subject: [PATCH] Use a white background on the body element for a narrow screen This avoids some ugly-looking dark area at the bottom of the screen, (since our page content doesn't always fill the screen). So things look better like this. --- empires/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/empires/style.css b/empires/style.css index 9beda3e..0c4f010 100644 --- a/empires/style.css +++ b/empires/style.css @@ -28,6 +28,9 @@ body { /* And when the screen is narrow, let's kill the wasted vertical space above it too. */ @media screen and (max-width: 499px) { + body { + background-color: white; + } #page { margin-top: 0; margin-bottom: 0; -- 2.43.0