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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
| body
{
background: url("images/background.jpg") repeat-x;
text-align:center;
font-family:verdana, sans-serif;
margin-top:20px;
margin-bottom:20px;
white-space:pre;
}
a:link{text-decoration:underline;color:#000;}
a:visited{text-decoration:underline;color:#000;}
a:hover{text-decoration:underline;color:#000;}
div#page
{
background-color:#fff;
width:990px;
height : 1000px;
margin:auto;
border:1px #000 solid;
}
div#bandeau {
width:990px;
height:320px;
}
div#menu {
float:left;
width:245px;
height:650px;
}
div#sous-menu
{
width : 245px;
height : 150px;
background-image:url("images/background_menu.jpg");
}
div#sous-menu ul
{
margin-left:40px;
font-size:12px;
font-weight:bold;
list-style-type:none;
text-align:left;
}
div#sous-menu h3
{
text-align:center;
font-weight:normal;
font-size:22px;
}
div#contenu
{
float:left;
left:20px;
width:745px;
height:650px;
overflow-y: auto;
overflow-x: visible;
}
div#contenu #lettrine
{
float:right;
margin-right : 5px;
}
div#pied_page {
clear:both;
width:990px;
height:30px;
background-image:url("images/barre_bas.jpg");
} |