diff options
author | raylu <raylu@mixpanel.com> | 2011-07-10 13:51:14 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-10 13:51:14 -0700 |
commit | eb1856d3ef86c6670640cd5d1528786a4b961c78 (patch) | |
tree | b4a6092e47b017eeb643e7550b4ccf13f641597b | |
parent | 91d78c52f26817d5904a8a031fa0bac0d49c6316 (diff) | |
download | otakuhub-eb1856d3ef86c6670640cd5d1528786a4b961c78.tar.xz |
fix IE gradients and remove old letter-spacing on h2
-rw-r--r-- | webroot/css/base.css | 1 | ||||
-rw-r--r-- | webroot/css/themes/light.css | 8 |
2 files changed, 4 insertions, 5 deletions
diff --git a/webroot/css/base.css b/webroot/css/base.css index 9b12043..30f70ba 100644 --- a/webroot/css/base.css +++ b/webroot/css/base.css @@ -11,7 +11,6 @@ h1 { h2 { font-size:200%; margin-bottom:10px; - letter-spacing:-1px; } h2.ribbon { padding: 15px 30px; diff --git a/webroot/css/themes/light.css b/webroot/css/themes/light.css index 686aeb7..4ade9ff 100644 --- a/webroot/css/themes/light.css +++ b/webroot/css/themes/light.css @@ -3,7 +3,7 @@ body { background: #ddd; background: -moz-linear-gradient(top, #fff, #ddd 500px, #ddd); background: -webkit-linear-gradient(top, #fff, #ddd 500px, #ddd); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#ddd'); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd'); } nav a, nav a:visited { color: #222; @@ -17,7 +17,7 @@ h2.ribbon { background: #359; background: -moz-linear-gradient(top, #37f, #359); background: -webkit-linear-gradient(top, #37f, #359); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#37f', endColorstr='#359'); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3377ff', endColorstr='#335599'); color: #eee; } .triangle-ribbon { @@ -29,14 +29,14 @@ a.gradient { background: #359; background: -moz-linear-gradient(top, #37f, #359); background: -webkit-linear-gradient(top, #37f, #359); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#37f', endColorstr='#359'); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3377ff', endColorstr='#335599'); color: #eee; } a.gradient:hover { background: #37f; background: -moz-linear-gradient(top, #39f, #06a); background: -webkit-linear-gradient(top, #39f, #06a); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#39f', endColorstr='#06a'); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3399ff', endColorstr='#0066aa'); color: #fff; } |