does anyone know how to make a center gradient fade from light to dark with about an offset of about -20px top?
this is what i’ve been able to do so far
background-color:#303030;
background-image:-moz-linear-gradient(left,#282828,#616161,#303030);
background-image:-webkit-linear-gradient(left,#282828,#616161,#303030);
background-image:-o-linear-gradient(left,#282828,#616161,#303030);
background-image:-ms-linear-gradient(left,#282828,#616161,#303030);
background-image:linear-gradient(left,#282828,#616161,#303030);

The left isn’t a linear gradient, it looks radial. Here’s an example of how to do one with an offset:
http://codepen.io/mastastealth/pen/ocIaz
Basically use something like this (apply proper prefixes, and not supported in older IEs):