diff options
author | Arun Persaud <arun@nubati.net> | 2007-07-17 22:15:10 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2007-07-17 22:15:10 -0700 |
commit | 517aa187eccce14d5f56df5bb3a9a17056da6661 (patch) | |
tree | bb9ce03d0bef5fdefab1d4849b843c19005beb05 | |
parent | 6adb80a6c530cc68eabafc64db8cbbb34b3614d6 (diff) | |
download | e-DoKo-517aa187eccce14d5f56df5bb3a9a17056da6661.tar.gz e-DoKo-517aa187eccce14d5f56df5bb3a9a17056da6661.tar.bz2 e-DoKo-517aa187eccce14d5f56df5bb3a9a17056da6661.zip |
LAYOUT: fixed small bug, probably only showed up on small windows
the session and the trick menu didn't use the full width of the screen,
because they were cut off by the floating divs on the left
-rw-r--r-- | css/standard.css | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/css/standard.css b/css/standard.css index a3dbf01..3d6fa92 100644 --- a/css/standard.css +++ b/css/standard.css @@ -75,7 +75,6 @@ ul.tricks { margin:3px; padding:0; padding-bottom:3px; - /*background-color:yellow;*/ text-align:center; border-bottom:1px solid #444; } @@ -90,7 +89,6 @@ ul.tricks li.old { background-color:#fff; } ul.tricks li:hover { background-color: #bbb;} ul.tricks li.nohighlight:hover { background-color: #fff;} - ul.tricks li div.trick { position:absolute; margin:0; @@ -253,20 +251,20 @@ ul.tricks li div div span.comment span{ .session { border-bottom:1px solid black; + text-align:center; } .ruleset { - float:left; - margin:0; - margin-top:10.5em; + position:absolute; + top:10.5em; border:2px solid gray; padding:0.3em; } .bug { - float:left; - margin-top:8.5em; + position:absolute; + top:17.5em; width:10em; border:2px solid gray; padding-top:0.5em; |