Are you sure about that, @
livid?
#Top {
background-color:#303033;
background-image:url("
http://v2ex.com/static/img/bg_top_black.png");
height:40px;
}
lol
it can be replaced with the css code below:
#Top {
background:#303033;
background:-moz-linear-gradient(center top , #444, #111) repeat scroll 0 0 transparent;
background:-webkit-gradient(linear, left top, left bottom, from(#444), to(#111));
height:40px;
}
Haven't tested the final effect yet, you can adjust it on your own.
Thanks to almighty CSS3!