From c96a5350e797a648f1022aff3f5e8c6f3f4d844d Mon Sep 17 00:00:00 2001 From: polarisfm Date: Fri, 27 Dec 2019 17:28:24 -0600 Subject: [PATCH] Retooled CSS style sheet to use em instead of px. --- www/css/style.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/www/css/style.css b/www/css/style.css index 8283109..528ff90 100644 --- a/www/css/style.css +++ b/www/css/style.css @@ -7,8 +7,8 @@ body { background-color: #000000; color: #ffffff; font-family: Roboto; - margin: 0 0 100px; - padding: 25px; + margin: 0 0 2em; + padding: 1em; } main { @@ -58,12 +58,12 @@ table { th, td { - border: 1px solid; + border: .09em solid; } menu { background-color: #000000; - padding-bottom: 5px; + padding-bottom: 3em; width: 100%; } @@ -86,10 +86,10 @@ menu { footer { position: absolute; - left: 0; - bottom: 0; + left: 0em; + bottom: 0em; width: 100%; - height: 50px; + height: 3em; overflow: hidden; }