From f96939df3357c0c9127f377bbe8fb6b57aaf1032 Mon Sep 17 00:00:00 2001 From: sanj Date: Tue, 18 May 2010 04:41:23 +0530 Subject: [PATCH] gradient fixed for webkit --- newsletter.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/newsletter.css b/newsletter.css index 1fd00cb..229bf8d 100644 --- a/newsletter.css +++ b/newsletter.css @@ -5,7 +5,15 @@ body { font-family: Arial; background: #404040; background-image: -moz-linear-gradient(top, #404040, #aaaaaa); - background-image: -webkit-gradient(linear, top, #404040, #aaaaaa); + background-image: -webkit-gradient( + linear, + center top, + center bottom, + color-stop(0.75, rgb(170,170,170)), + color-stop(0.29, rgb(64,64,64)) + ); + + } #nav { position: fixed;