diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2011-08-22 15:42:45 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2011-08-22 15:42:45 +0100 |
commit | 940ecc511d872f1d26f66a1ebcfe3a9fc7c7c4e9 (patch) | |
tree | 8b24da2dd958b41818385be0eef86a1539896a90 | |
parent | 83b539de3696408f6af991b9168c3dc1aead8293 (diff) |
remove borders from image-links in firefox etc
-rw-r--r-- | public/stylesheets/theme.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/public/stylesheets/theme.css b/public/stylesheets/theme.css index b75540828..fec24cffb 100644 --- a/public/stylesheets/theme.css +++ b/public/stylesheets/theme.css @@ -62,12 +62,16 @@ body { } #banner_inner a#logo { - position:absolute; + position:absolute; left:0px; top:70px; z-index: 100; } +a img { + border: none +} + #navigation_search { width:auto; right:0px; @@ -85,6 +89,7 @@ body { padding:5px 5px 4px 5px; border-color:#BE7DBC; border-radius:5px 0px 0px 5px; + -moz-border-radius:5px 0px 0px 5px; } #logged_in_bar { @@ -141,6 +146,7 @@ div.lang { background: url(/images/stripes.png); border: 1px solid #DEBEDD; border-radius:5px; + -moz-border-radius:5px; font-family:DeliciousRoman; color: #6B3C6A; font-size:18px; @@ -295,6 +301,7 @@ p.subtitle { padding: 5px; color: #555; border-radius: 3px 0px 0px 3px; + -moz-border-radius: 3px 0px 0px 3px; border-style: solid; border-color: #BBB; border-width: 1px; @@ -433,6 +440,7 @@ div.frontpage-box { background: url(/images/stripes.png); border: 1px solid #DEBEDD; border-radius:5px; + -moz-border-radius:5px; font-family:DeliciousRoman; color: #6B3C6A; font-size:18px; |