42 lines
548 B
CSS
42 lines
548 B
CSS
body {
|
|
background-color: #bebebe;
|
|
font:11px Arial,Helvetica,sans-serif;
|
|
text-align: center; /* pour corriger le bug de centrage IE */
|
|
}
|
|
|
|
#global {
|
|
width:900px;
|
|
margin:0 auto;
|
|
text-align:left;
|
|
}
|
|
|
|
#header {
|
|
float:left;
|
|
width:200px;
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
|
|
#content {
|
|
float:left;
|
|
width:680px;
|
|
padding-left:20px;
|
|
padding-top:68px;
|
|
}
|
|
|
|
#center {
|
|
background-color:#fff;
|
|
}
|
|
|
|
#footer {
|
|
background-color:#fff;
|
|
}
|
|
|
|
.clearfix:after {
|
|
content: ".";
|
|
display: block;
|
|
height: 0;
|
|
clear: both;
|
|
visibility: hidden;
|
|
zoom:1;
|
|
} |