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 91 92 93 94 95 96 97 98 99 100
| body{
background:url(fond.jpg);
text:#3366FF;
font-family:Comic Sans MS, Arial, Verdana, Times New Roman, Courrier;
}
#fondenTete{
position:absolute;
top:5px;
left:115px;
width:750px;
height:65px;
background-color:black;
}
#enTete{
position:absolute;
top:10px;
left:120px;
width:750px;
height:65px;
background-color:darkgrey;
}
#superMenu{
border:0px
margin:0px;
padding:0px;
position:absolute;
top:80px;
left:120px;
z-index:3;
}
#fondcontenu{
position:absolute;
top:110px;
left:115px;
width:750px;
height:400px;
background-color:black;
z-index:1;
}
#contenu{
position:absolute;
top:115px;
left:120px;
width:750px;
height:400px;
background-color:darkgrey;
z-index:2;
}
div#menu *{
cursor:crosshair;
margin:0px;
padding:0px;
list-style-type:none;
text-align:center;
}
div#menu dl {
border-top: 1px solid black;
border-bottom: 1px solid black;
float:left;
width:150px;
}
div#menu dl dt a,
div#menu dd ul li a {
padding:0px;
height:20px;
color:gold;
font-size:14px;
text-decoration:none;
display:block;
}
div#menu dt a {
font-weight:bold;
}
div#menu dl a:hover {
color:gold;
}
div#menu dl dt a {
background-color:dimgrey;
}
div#menu dl dt a:hover {
background-color:dimgrey;
}
div#menu dl dd {
display:none;
}
div#menu dl dd ul li {
background-color:dimgrey;
border-left: 1px solid black;
border-right: 1px solid black;
}
div#menu dl dd ul li a {
background-color:dimgrey;
height:20px;
font-size:12px;
}
div#menu dl dd ul li a:hover {
background-color:grey;
color:black;
} |
Partager