summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorThorsten Wißmann <edu@thorsten-wissmann.de>2012-02-19 20:43:14 +0100
committerThorsten Wißmann <edu@thorsten-wissmann.de>2012-02-19 20:43:14 +0100
commit214364f8b0a26207e36e1d870112f7714a44369e (patch)
treea780a369892eaee71f95690dd92fd32ddbabf6dd /www
parent1023bbd4bad96124cb0ca21be4882f13050945d1 (diff)
www: add fancy shadows
Diffstat (limited to 'www')
-rw-r--r--www/main.css15
1 files changed, 13 insertions, 2 deletions
diff --git a/www/main.css b/www/main.css
index 1c2e4a65..b8968eab 100644
--- a/www/main.css
+++ b/www/main.css
@@ -1,14 +1,19 @@
body {
background-color: #66770A;
- padding-top: 0em;
- margin: 10px;
+ padding: 10px;
+ margin: 0px;
}
#frame {
margin-left: auto;
margin-right: auto;
+ margin-top: 0.5em;
+ margin-bottom: 2em;
border: 0px solid #555753;
width: 40em;
+ -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.5);
+ -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.5);
+ box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.5);
}
#navigationbar .curtab {
@@ -24,6 +29,12 @@ body {
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
}
+#frame {
+ border-bottom-left-radius: 10px;
+ border-bottom-right-radius: 10px;
+ -moz-border-radius-bottomleft: 10px;
+ -moz-border-radius-bottomright: 10px;
+}
#frame , #navigationbar .curtab {
background-color: white;