diff options
Diffstat (limited to 'web/css.css')
-rw-r--r-- | web/css.css | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/web/css.css b/web/css.css index e2bbe2070..a2c6784e4 100644 --- a/web/css.css +++ b/web/css.css @@ -196,8 +196,9 @@ fieldset div.checkbox label, label.n { /* Map */ #map_box { - float:right; + float: right; width: 510px; + position: relative; } p#copyright { @@ -257,9 +258,11 @@ p#copyright { #compass { background-color: #ffffff; + border: solid 1px #000000; color: #000000; - float: right; - margin: 0 1em 0.5em; + position: absolute; + top: 0px; + right: 439px; } #compass img { @@ -317,3 +320,18 @@ ol#current img { padding:10px; border:1px solid #999999; } + +#fixed, #unknown { + margin: 1em auto; + width: 80%; + padding: 5px; + text-align: center; +} +#fixed { + background-color: #ccffcc; + border: solid 2px #009900; +} +#unknown { + background-color: #ffcccc; + border: solid 2px #990000; +} |