From 3d8b3a8da674f8e9737ccdbf50fc70df56f34fa8 Mon Sep 17 00:00:00 2001 From: Maximilian Date: Sun, 15 Jan 2023 15:55:11 -0600 Subject: [PATCH] Remove redundant identifiers and use margin shorthand --- static/style.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/static/style.css b/static/style.css index fe1d385..6cd22e6 100644 --- a/static/style.css +++ b/static/style.css @@ -2,9 +2,8 @@ body { background: #151515; color: navajowhite; max-width: 850px; - margin: auto; padding: 0 16px; - margin-bottom: 500px; + margin: auto auto 500px; scrollbar-color: gray #151515; font-family: sans-serif; } @@ -49,7 +48,7 @@ a:hover { h1 { border-style: solid; - border-width: 0px 0px 2px 0px; + border-width: 0 0 2px 0; text-align: center; } @@ -61,7 +60,7 @@ h2 { footer { text-align: center; border-style: solid; - border-width: 2px 0px 0px 0px; + border-width: 2px 0 0 0; padding: 1em; }