2018-06-30 13:28:19 +02:00
|
|
|
.menu_icon [class*='menu_bar-'] {
|
2018-08-22 23:05:41 +02:00
|
|
|
background: #fff;
|
2018-06-30 13:28:19 +02:00
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
-webkit-transition: 0.2s ease all;
|
|
|
|
|
transition: 0.2s ease all;
|
2018-07-03 10:52:51 +02:00
|
|
|
height: 0.18rem;
|
2018-06-30 15:04:24 +02:00
|
|
|
display: block;
|
2018-06-30 13:28:19 +02:00
|
|
|
margin-bottom: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-05 17:52:02 +02:00
|
|
|
.menu_icon:focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-30 13:28:19 +02:00
|
|
|
.menu_bar-top {
|
|
|
|
|
width: 25px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu_bar-mid {
|
|
|
|
|
width: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu_bar-bot {
|
|
|
|
|
width: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-opened .menu_bar-bot {
|
|
|
|
|
width: 25px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-opened .menu_bar-top {
|
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
-webkit-transform-origin: 15% 15%;
|
|
|
|
|
transform-origin: 15% 15%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-opened .menu_bar-mid {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-opened .menu_bar-bot {
|
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
|
-webkit-transform-origin: 15% 95%;
|
|
|
|
|
transform-origin: 15% 95%;
|
2018-07-05 16:49:34 +02:00
|
|
|
}
|
2018-07-06 17:33:36 +02:00
|
|
|
|
|
|
|
|
.panel:before {
|
|
|
|
|
content: '';
|
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
|
transition: background-color 0.5s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-open:before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
|
z-index: 99;
|
|
|
|
|
}
|