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 101 102
| #Menu{
display: -webkit-box;
display: -moz-box;
display: -ms-box;
display: box;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-ms-box-orient: horizontal;
box-orient: horizontal;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-flex: 1;-moz-box-flex: 1;-ms-box-flex: 1;box-flex: 1;
-webkit-flex: 1;-moz-flex: 1;-ms-flex: 1;flex: 1;
height:130px;
margin-bottom:10px;
}
#Menu ul{
height:80px;
margin:0; padding:0;
margin:0; padding:0;
display: -webkit-box;
display: -moz-box;
display: -ms-box;
display: box;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
position:relative;
}
#Menu li{
display: -webkit-box;
display: -moz-box;
display: -ms-box;
display: box;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
background:#333333;
list-style:none;
height:80px;
margin:0; padding:0;
display:inline-block;
-webkit-box-flex: 1;-moz-box-flex: 1;-ms-box-flex: 1;box-flex: 1;
-webkit-flex: 1;-moz-flex: 1;-ms-flex: 1;flex: 1;
background:height:80px; text-align:center;
border-right:2px solid #bababa;
}
#Menu li:last-child{border-right:0;}
#Menu li a{display:block; }
#Menu ul ul{
height:50px;
margin-top:5px; padding:0;
display: -webkit-box;
display: -moz-box;
display: -ms-box;
display: box;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
-ms-box-orient: vertical;
box-orient: vertical;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-flex: 1;-moz-box-flex: 1;-ms-box-flex: 1;box-flex: 1;
-webkit-flex: 1;-moz-flex: 1;-ms-flex: 1;flex: 1;
}
#Menu li li{
display: -webkit-box;
display: -moz-box;
display: -ms-box;
display: box;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
list-style:none;
margin:0; padding:0;
display:inline-block;
-webkit-box-flex: 1;-moz-box-flex: 1;-ms-box-flex: 1;box-flex: 1;
-webkit-flex: 1;-moz-flex: 1;-ms-flex: 1;flex: 1;
flex-grow:1;
background:#ccff00;height:50px; text-align:center;
border-right:2px solid #333333;
}
#Menu li li:last-child{border-right:0;}
#Menu li li a{
color:#333333; text-decoration:none; font-size:16px; font-family:open; text-align:center; line-height:50px;
display:block;
} |
Partager