From 11ad2599ed983b8749fb2ce7f0a19f998c2998dd Mon Sep 17 00:00:00 2001 From: oneleaftea Date: Sat, 26 Aug 2017 07:05:11 -0700 Subject: Fix centering on menu in header (style.css change) (#12) * Update style.css to change .menu padding to 0px Since menu li items normally add padding, it off-centers the menu. Changing padding to 0px fixes this. * split the two CSS rules --- static/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/css/style.css b/static/css/style.css index d23b9a5..0edd168 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -6,6 +6,7 @@ body { } /* header and footer areas */ +.menu { padding: 0; } .menu li { display: inline-block; } .article-meta, .menu a { text-decoration: none; -- cgit