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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
| .orion-menu{
width: 100%;
position: relative;
float: right;
background: #0097a7;
list-style: none;
top: -13px
}
.orion-menu li {
display: inline-block;
font-size: 15px;
margin: 0px;
padding: 0;
float: right;
line-height: 20px;
position: relative;
}
.orion-menu li a {
padding: 27px 22px 20px;
color: #ffffff;
text-decoration: none;
display: inline-block;
-o-transition: color .3s linear, background .3s linear;
-webkit-transition: color .3s linear, background .3s linear;
-moz-transition: color .3s linear, background .3s linear;
transition: color .3s linear, background .3s linear;
}
.orion-menu li:hover > a{
color: #fff;
}
.orion-menu li.active > a{
background: #555555;
}
.orion-menu > li > a {
text-transform: uppercase;
}
/* DROPDOWN */
.orion-menu ul,
.orion-menu ul li ul {
list-style: none;
margin: 0;
padding: 0;
display: none;
position: absolute;
z-index: 999;
width: 150px;
background: #12aebd;
}
.orion-menu ul{
top: 68px;
right: 0;
}
.orion-menu ul li ul{
top: 0;
right: 150px;
}
.orion-menu ul li{
clear:both;
width:100%;
font-size:14px;
}
.orion-menu ul li a {
width:100%;
padding:12px 22px;
display:inline-block;
float:right;
clear:both;
box-sizing:border-box;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
}
.orion-menu ul li:hover > a{
background: #555555;
}
/* DROPDOWN ARROWS*/
.orion-menu .indicator{
color: #bababa;
position: absolute;
left: 8px;
top: 30px;
font-family: 'FontAwesome';
font-size: 12px;
}
.orion-menu .indicator:before{
content: "\f0d7";
}
.orion-menu ul li .indicator{
left: 20px;
top: 13px;
}
.orion-menu ul li .indicator:before{
content: "\f0da";
}
/* COLLAPSIBLE CONFIGURATION */
.orion-menu > li.showhide{
display: none;
width: 100%;
height: 50px;
cursor: pointer;
color: #ffffff;
background: #0097a7;
}
.orion-menu > li.showhide span.title{
margin: 16px 0 0 18px;
float: right;
}
.orion-menu> li.showhide span.icon{
margin: 17px 0px;
float: left;
}
.orion-menu > li.showhide .icon em{
margin-bottom: 3px;
display: block;
width: 20px;
height: 2px;
background: #fff;
}
/* blue */
.blue, .blue li ul, .blue ul li ul, .blue > li.showhide{ background: #008C9E; }
.blue li a, .orion-menu li.social a{ color: #dedede; }
.blue li.active > a, .blue ul li:hover > a, .blue li.social a .tooltip{ background: #009fb4; }
.blue li.search form input.search:focus{ background-color: #009fb4; }
.blue li.social a .tooltip:before, .blue li.social a .tooltip:after{ border-top-color: #009fb4; } |
Partager