diff options
author | Siri Reiter <siri@jones.dk> | 2010-07-24 21:22:48 +0200 |
---|---|---|
committer | Siri Reiter <siri@jones.dk> | 2010-07-24 21:22:48 +0200 |
commit | b3bc905af17f40d50f454832d525ab32fdf9265d (patch) | |
tree | 19813a8b6e4f821e0ce6b2256f00e3d590f92a57 | |
parent | d9e9f9b02485cac4ee45d9cde48756005c1c0250 (diff) |
Topbar and sidebar extended with class (not only id) to support Ikiwiki 3.x.
-rw-r--r-- | local.css | 25 |
1 files changed, 16 insertions, 9 deletions
@@ -29,7 +29,8 @@ DIV#footer { font-size: 80%; } -DIV#topbar { +DIV#topbar, +DIV.topbar { float: right; margin: 0; padding: 0; @@ -37,35 +38,41 @@ DIV#topbar { width: 75%; } -DIV#topbar a { +DIV#topbar a, +DIV.topbar a { text-decoration: none; } -DIV#topbar ul { +DIV#topbar ul, +DIV.topbar ul { list-style-type: none; padding: 0; } -DIV#topbar ul li { +DIV#topbar ul li, +DIV.topbar ul li { display: inline; margin: 0 5%; } -DIV#sidebar { +DIV#sidebar, +DIV.sidebar { margin: 4em 2em 2em; padding: 1em; - } -DIV#sidebar ul li { +DIV#sidebar ul li, +DIV.sidebar ul li { list-style-type: none; } -DIV#sidebar ul li SPAN.selflink { +DIV#sidebar ul li SPAN.selflink, +DIV.sidebar ul li SPAN.selflink { color: darkgreen; } -DIV#sidebar a { +DIV#sidebar a, +DIV.sidebar a { text-decoration: none; } |