|
From: Lasse Kärkkäi. <tr...@us...> - 2011-01-10 23:15:55
|
Module: web
Branch: master
Commit: 015756b029cb050972ccf0e223f3ec182047aa59
Author: Lasse Karkkainen <tro...@tr...>
Date: Sun Dec 5 19:59:14 2010 +0100
Fix border radius for Firefox
---
htdocs-binary/style.css | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/htdocs-binary/style.css b/htdocs-binary/style.css
index a42e24d..f0e4feb 100644
--- a/htdocs-binary/style.css
+++ b/htdocs-binary/style.css
@@ -1,5 +1,6 @@
body {
background: #000 url('bgs/fantasy_16.jpg') no-repeat;
+ /* Sadly this is too slow: background-attachment: fixed; */
background-size: 100%;
font-family: Verdana, Sans-Serif, sans;
font-size: 13px;
@@ -29,11 +30,13 @@ body {
-moz-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
padding: 10px;
border-radius: 10px;
+ -moz-border-radius: 10px;
}
/* main column */
#main {
position: relative;
border-radius: 10px;
+ -moz-border-radius: 10px;
box-shadow: 0px 0px 50px #448;
-webkit-box-shadow: 0px 0px 50px #448;
-moz-box-shadow: 0px 0px 50px #448;
@@ -85,6 +88,7 @@ body {
#menu li.selected {
background-color: #448;
border-radius: 10px;
+ -moz-border-radius: 10px;
box-shadow: 0px 0px 50px #448;
-webkit-box-shadow: 0px 0px 50px #448;
-moz-box-shadow: 0px 0px 50px #448;
|