diff options
Diffstat (limited to 'webroot/css/themes/light.css')
-rw-r--r-- | webroot/css/themes/light.css | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/webroot/css/themes/light.css b/webroot/css/themes/light.css index e38b72d..686aeb7 100644 --- a/webroot/css/themes/light.css +++ b/webroot/css/themes/light.css @@ -16,14 +16,30 @@ nav a:hover { h2.ribbon { background: #359; background: -moz-linear-gradient(top, #37f, #359); - background: -webkit-linear-gradient(top, #35f, #359); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#359'); + background: -webkit-linear-gradient(top, #37f, #359); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#37f', endColorstr='#359'); color: #eee; } .triangle-ribbon { border-right-color: #359; } +a.gradient { + /* same as 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'); + 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'); + color: #fff; +} + footer { color: #666; } |