[fix] css background linear

This commit is contained in:
Knah Tsaeb 2013-03-29 15:59:19 +01:00
parent 01f59ddf63
commit ed5a80e732
1 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,12 @@
html {
background: -moz-linear-gradient(center top , #434343, #cdcdcd) no-repeat scroll 0 0 transparent;
background: #434343; /* Old browsers */
background: -moz-linear-gradient(top, #434343 0%, #cdcdcd 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#434343), color-stop(100%,#cdcdcd)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #434343 0%,#cdcdcd 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #434343 0%,#cdcdcd 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #434343 0%,#cdcdcd 100%); /* IE10+ */
background: linear-gradient(to bottom, #434343 0%,#cdcdcd 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#434343', endColorstr='#cdcdcd',GradientType=0 ); /* IE6-9 */
}
body {