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
| /* Principal */
#menu2, #menu2 ul{
padding:0;
margin-top:3px;
list-style:none;
text-align:center;
font-weight:bold;
}
#menu2 li{
display:inline-block;
position:relative;
width:143px;
height:39px;
line-height:39px;
}
#menu2 ul li{
display:inherit;
}
#menu2 ul{
position:absolute;
max-height:0px;
overflow:hidden;
transition: 1.6s;
}
#menu2 li:hover ul{
max-height:156px;
}
/* background des liens menus */
#menu2 li:first-child{
background:url(../images/visiteurs/b1_nv.jpg);
margin-top:-3px;
}
#menu2 li:nth-child(2){
background:url(../images/visiteurs/b2_nv.jpg);
}
#menu2 li:nth-child(3){
background:url(../images/visiteurs/b3_nv.jpg);
}
#menu2 li:nth-child(4){
background:url(../images/visiteurs/b4_nv.jpg);
}
#menu2 li:nth-child(5){
background:url(../images/visiteurs/b5_nv.jpg);
}
#menu2 li:last-child{
background:url(../images/visiteurs/b6_nv.jpg);
}
/*background des liens menus et sous menus au survol */
#menu2 li:first-child:hover, #menu2 li:first-child li:hover{
background:url(../images/visiteurs/b1a_nv.jpg);
}
#menu2 li:nth-child(2) li{
background:url(../images/visiteurs/b21_nv.jpg);
}
#menu2 li:nth-child(2) li:hover{
background:url(../images/visiteurs/b21a_nv.jpg);
}
#menu2 li:nth-child(3) li{
background:url(../images/visiteurs/b31_nv.jpg); font-stretch:semi-condensed; font-size:12px;
}
#menu2 li:nth-child(3) li:hover{
background:url(../images/visiteurs/b31a_nv.jpg); font-stretch:semi-condensed; font-size:12px;
}
#menu2 li:nth-child(4):hover{
background:url(../images/visiteurs/b4a_nv.jpg);
}
#menu2 li:nth-child(5):hover{
background:url(../images/visiteurs/b5a_nv.jpg);
}
#menu2 li:last-child:hover, #menu2 li:last-child li:hover{
background:url(../images/visiteurs/b6a_nv.jpg);
} |
Partager