53 lines
777 B
CSS
Raw Normal View History

2011-01-05 09:59:49 +00:00
body {
2011-01-05 15:14:23 +00:00
background-color: #bebebe;
2011-01-05 09:59:49 +00:00
font:11px Arial,Helvetica,sans-serif;
text-align: center; /* pour corriger le bug de centrage IE */
}
#global {
2011-01-05 15:14:23 +00:00
width:900px;
2011-01-05 09:59:49 +00:00
margin:0 auto;
text-align:left;
}
#header {
float:left;
width:200px;
margin:0;
2011-01-05 15:14:23 +00:00
padding:0;
2011-01-05 09:59:49 +00:00
}
#content {
float:left;
2011-01-05 15:14:23 +00:00
width:680px;
padding-left:20px;
padding-top:68px;
}
#center {
background-color:#fff;
2011-01-05 09:59:49 +00:00
}
#footer {
2011-01-11 09:17:07 +00:00
clear:both;
2011-01-07 17:16:07 +00:00
text-align:center;
2011-01-11 09:17:07 +00:00
margin-top:15px;
}
#footer p {
font:0.9em Arial, Helvetica, sans-serif;
2011-01-05 15:14:23 +00:00
}
2011-01-05 09:59:49 +00:00
2011-01-05 15:14:23 +00:00
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
zoom:1;
2011-01-11 09:17:07 +00:00
}
a:link {color: #9c093a; text-decoration:none;}
a:visited {color: #9c093a; text-decoration:none;}
a:hover {color: blue; text-decoration:none;}