diff options
author | raylu <raylu@mixpanel.com> | 2011-08-10 01:30:42 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-08-10 01:30:42 -0700 |
commit | 4441585eb6f3eabcb9e6feb74a05880b235a277a (patch) | |
tree | d03790819fc28c560fe106cd5f4c99da038ddebd /static | |
parent | 014af112e9a1af7e68b493e56d84845db5e33fad (diff) | |
download | audioaxis-4441585eb6f3eabcb9e6feb74a05880b235a277a.tar.xz |
fix webkit gradient
Diffstat (limited to 'static')
-rw-r--r-- | static/home.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/static/home.css b/static/home.css index 8931b48..5c07461 100644 --- a/static/home.css +++ b/static/home.css @@ -8,13 +8,14 @@ article p a:link, article p a:visited { color: #111; padding: 10px; border: 1px solid #888; + background: #058; background: -moz-linear-gradient(top, #07a, #047); - background: -webkit-linear-gradient(left, rgba(255,255,255,1), rgba(255,255,255,0)); + background: -webkit-linear-gradient(top, #07a, #047); font-weight: bold; } article p a:hover { background: -moz-linear-gradient(top, #08b, #047); - background: -webkit-linear-gradient(left, rgba(255,255,255,1), rgba(255,255,255,0)); + background: -webkit-linear-gradient(top, #08b, #047); text-decoration: none; } |