1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| body {
font: 13px verdana, sans-serif;
background: #f0f9ff; /* Old browsers */
background: -moz-linear-gradient(top, #f0f9ff 0%, #cbebff 34%, #a1dbff 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f9ff), color-stop(34%,#cbebff), color-stop(100%,#a1dbff)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f0f9ff 0%,#cbebff 34%,#a1dbff 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f0f9ff 0%,#cbebff 34%,#a1dbff 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #f0f9ff 0%,#cbebff 34%,#a1dbff 100%); /* IE10+ */
background: linear-gradient(to bottom, #f0f9ff 0%,#cbebff 34%,#a1dbff 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f9ff', endColorstr='#a1dbff',GradientType=0 ); /* IE6-9 */
min-height: 100%;
}
html{
height:100%;
}
#contenu {
margin:auto;
width:700px;
}
.global {
position:relative;
text-align:left;
height:auto!important;
min-height:100%;
height:100%;
width:1200px;
margin:0 auto;
border-left: #e0e0e0 solid 5px;
border-right: #e0e0e0 solid 5px;
}
#header {
width:889px; /* taille de l'image inseree dans le html */
height:366px;/* taille de l'image inseree dans le html */
margin:auto;/* centrage de l'image */
} |
Partager