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 79 80 81 82 83 84 85 86 87 88 89 90
| /* CSS Document */
body
{ background-color: #FFFFFF;
/*width: 2000px;*/
width:98%;
margin: left;
margin-top: 0px;
margin-bottom: 0px;
}
/* L'en-tête */
#en_tete
{
width:1237px;
height: 140px;
margin-bottom:10px;
}
/* Le menu */
#menu
{
float: left;
width: 210px;
height:910px;
}
/* Le corps de la page */
#corps
{
margin-left: 230px;
margin-bottom: 0px;
padding: 5px;
background-color: #F4F4F4;
height:900px;
background-repeat: repeat-x;
border: 2px solid black;
background-repeat: repeat-x;
/* border: 2px solid black;*/
}
.element_corps
{
margin-top: 0px;
margin:center;
border-width: thick;
margin-bottom: 20px;
/*background-color: #0080FF;*/
}
.element_corps ul
{
color:#333333;
font-size:25px;
}
/* Le pied de page (qui se trouve tout en bas, en général pour les copyrights) */
#pied_de_page
{
padding: 0px;
text-align: center;
color: #B3B3B3;
background-color: #626262;
background-repeat: repeat-x;
border: 2px solid black;
margin-top:0px;
} |
Partager