88 lines
1.5 KiB
CSS
88 lines
1.5 KiB
CSS
/**
|
|
* 2010-2022 Webkul.
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* All right is reserved,
|
|
* Please go through LICENSE.txt file inside our module
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade this module to newer
|
|
* versions in the future. If you wish to customize this module for your
|
|
* needs please refer to CustomizationPolicy.txt file inside our module for more information.
|
|
*
|
|
* @author Webkul IN
|
|
* @copyright 2010-2022 Webkul IN
|
|
* @license LICENSE.txt
|
|
*/
|
|
|
|
.nav_toggle {
|
|
background-color: #379BF0;
|
|
border: none;
|
|
position: relative;
|
|
padding: 11px 10px;
|
|
margin: 4px 0;
|
|
}
|
|
|
|
.nav_toggle .icon-bar {
|
|
display: block;
|
|
width: 22px;
|
|
height: 2px;
|
|
border-radius: 1px;
|
|
background-color: #FFFFFF
|
|
}
|
|
|
|
.nav_toggle .icon-bar + .icon-bar {
|
|
margin-top: 4px
|
|
}
|
|
|
|
.navigation-link {
|
|
color: #ffffff;
|
|
font-size: 17px;
|
|
font-weight: 400
|
|
}
|
|
|
|
.wk-nav-style {
|
|
border-bottom: 1px solid #cccccc;
|
|
padding: 0 15px 20px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#menu_cont {
|
|
width: 285px;
|
|
position: fixed;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
right: 0px;
|
|
z-index: 2000;
|
|
background-color: #FFFFFF;
|
|
padding-top: 10px
|
|
}
|
|
|
|
.close_navbar {
|
|
font-size: 20px;
|
|
color: #ffffff;
|
|
cursor: pointer;
|
|
background-color: #379bf0;
|
|
height: 50px;
|
|
padding: 15px;
|
|
text-align: center;
|
|
width: 50px
|
|
}
|
|
|
|
.menu_cont_left {
|
|
overflow-y: scroll;
|
|
transform: translate(0px);
|
|
transition: all 0.3s ease-out 0s
|
|
}
|
|
|
|
.menu_cont_right {
|
|
transform: translate(295px);
|
|
transition: all 0.3s ease-out 0s
|
|
}
|
|
|
|
a.navigation-link:focus {
|
|
outline: none;
|
|
}
|