kaloyanivanov
3/25/2017 - 9:31 PM

CSS3 cool subtle gradient

CSS3 cool subtle gradient

border: solid 1px #C1BFBF;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4), 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4), 0 1px 1px rgba(0,0,0,.1);
box-shadow: inset 0 -1px 0 rgba(255,255,255,.4), 0 1px 1px rgba(0,0,0,.1);
background: white;
background: -moz-linear-gradient(top, white 0%, #EDEDED 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,white), color-stop(100%,#EDEDED));
background: -webkit-linear-gradient(top, white 0%,#EDEDED 100%);
background: -o-linear-gradient(top, white 0%,#EDEDED 100%);
background: -ms-linear-gradient(top, white 0%,#EDEDED 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
background: linear-gradient(top, white 0%,#EDEDED 100%);
border-image: initial;