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
|
/* .horizontal_menu { */
/* height: 20px; */
/* } */
#jMenu {
/* display: table; */
margin: 0;
font-weight: bold
}
/********************/
/** premier niveau **/
/********************/
#jMenu li {
display: table-cell;
/* background-color: #f89c22; */
/* margin: 0 */
padding-right: 7px
}
#jMenu li a {
padding: 10px;
background-color: #da812d;
display: block;
-moz-border-radius-topright: 6px;
/* background-color: transparent; */
color: #fff;
cursor: pointer;
font-size: 13px
}
#jMenu li a:hover {
background-color: #f8d322;
color: #a91819
}
/*******************/
/** second niveau **/
/*******************/
#jMenu li:hover, #jMenu li ul li:hover {
color: #a91819;
-moz-border-radius-topright: 6px;
text-decoration: none
}
#jMenu li ul {
display: none;
position: absolute;
padding: 0;
margin: 0
}
#jMenu li ul li {
background-color: #f8d322;
-moz-border-radius-topright: 6px;
display: block;
border-bottom: 1px solid #da812d;
padding: 0
}
#jMenu li ul li.arrow {
background: #f5f053 url(../arrow_down.png) no-repeat center center;
color: #red;
height: 6px;
padding: 0;
border-bottom: none;
padding-bottom: 10px
}
#jMenu li ul li a {
font-size: 11px;
text-transform: none;
background-color: #f8d322;
color: #a91819;
padding: 7px;
display: block;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent
}
#jMenu li ul li a.isParent {
background: #f8d322 url(../arrow_right.png) no-repeat right center;
color: #a91819
}
#jMenu li ul li a:hover {
background-color: #f5f053;
-moz-border-radius-topright: 6px;
color: #a91819;
border-top: 1px solid #322f32;
border-bottom: 1px solid #322f32
}
|