From: Matthijs Kooijman Date: Thu, 29 Apr 2010 10:58:01 +0000 (+0200) Subject: exodus: Match the CSS to the new menu HTML structure. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fwipi.git;a=commitdiff_plain;h=d9f67a806fcacf980379c2023294dac9f8913949 exodus: Match the CSS to the new menu HTML structure. --- diff --git a/static/exodus/css/screen.css b/static/exodus/css/screen.css index 92bb0a5..fcb6805 100644 --- a/static/exodus/css/screen.css +++ b/static/exodus/css/screen.css @@ -39,7 +39,7 @@ body { margin:auto; } -ul#menubar { +#menubar ul { /* Fit exactly into the bar in the background */ padding-top: 5px; height:15px; @@ -55,21 +55,24 @@ ul#menubar { } /* Display next to each other instead of below */ -ul#menubar li { +#menubar li, #menubar li p { display:inline; - padding:0px 10px 0px 10px; +} + +#menubar li p { + padding:0px 0px 0px 10px; color:#5F3E06; font-weight:bold; } /* Disable underlining and the default blue colour for links in the menubar */ -ul#menubar li a { +#menubar li a { color:#5F3E06; text-decoration:none; } /* Give the menu bar links a hover color */ -ul#menubar li a:hover { +#menubar li a:hover { color:#FFD200; }