1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| .BandeauLogin{
background: -moz-linear-gradient(top, rgba(204,204,204,1) 0%, rgba(232,232,232,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(204,204,204,1)), color-stop(100%,rgba(232,232,232,1)));
background: -webkit-linear-gradient(top, rgba(204,204,204,1) 0%,rgba(232,232,232,1) 100%);
background: -o-linear-gradient(top, rgba(204,204,204,1) 0%,rgba(232,232,232,1) 100%);
background: -ms-linear-gradient(top, rgba(204,204,204,1) 100%,rgba(232,232,232,1)) 100%);
background: linear-gradient(top, rgba(204,204,204,1) 100%,rgba(232,232,232,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#e8e8e8',GradientType=0 );
background: rgb(232,232,232);
height: 110px;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
font-weight: bold;
color: #005abb;
text-align: center;
width: 100%;
} |
Partager