diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-27 05:24:58 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-27 05:24:58 +0000 |
commit | 3aefe67a1ef296b1538e7ef5389bb920f97f6680 (patch) | |
tree | e269fcdf9647d700b381779eaf8cdd72f9d6a570 /basewiki | |
parent | e0fdfd09bbdf122485eb2c10fe8c7a6b9b36c1d8 (diff) | |
download | ikiwiki-3aefe67a1ef296b1538e7ef5389bb920f97f6680.tar ikiwiki-3aefe67a1ef296b1538e7ef5389bb920f97f6680.tar.gz |
avoid floating boxes running up against the line at the bottom of the page
somewhat grody I think; relies on placement and type of tags display..
Diffstat (limited to 'basewiki')
-rw-r--r-- | basewiki/style.css | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/basewiki/style.css b/basewiki/style.css index 0dfab6e77..67c8ab1d1 100644 --- a/basewiki/style.css +++ b/basewiki/style.css @@ -31,15 +31,27 @@ padding: .2em .4em; } +#backlinks { + margin: 1em 0; +} + +.tags { + clear: both; +} + +div.tags { + border-top: 1px solid #000; +} + +#footer { + margin: 1em 0; +} + #searchform { display: inline; float: right; } -#content { - border-bottom: 1px solid #000; -} - #editcontent { width: 100%; } @@ -80,15 +92,8 @@ td.changelog { border: 1px solid #aaa; } -#backlinks { - margin: 1em 0; -} - -#footer { - margin: 1em 0; -} - .pageinfo { + clear: both; font-style: italic; display: block; } |