gil00pita
11/9/2014 - 1:25 PM

CSS: CSS3 Gradients Template From http://www.hongkiat.com/blog/css-snippets-for-designers/

#colorbox {  
    background: #629721;  
    background-image: -webkit-gradient(linear, left top, left bottom, from(#83b842), to(#629721));  
    background-image: -webkit-linear-gradient(top, #83b842, #629721);  
    background-image: -moz-linear-gradient(top, #83b842, #629721);  
    background-image: -ms-linear-gradient(top, #83b842, #629721);  
    background-image: -o-linear-gradient(top, #83b842, #629721);  
    background-image: linear-gradient(top, #83b842, #629721);  
}