asia_kstyle8/assets/stylesheets/template/modules/menu.scss

360 lines
6.7 KiB
SCSS

@charset "utf-8";
@import "../initial";
#layout-navigation{
@media (min-width: 1025px){
margin-top: 27.3em;
}
@media (min-width: 768px) and (max-width: 1024px){
margin-top: 23.7em;
}
@media(min-width:769px){
width: 20%;
float: left;
position: absolute;
}
}
.navbar-collapse.in {
overflow-y: unset;
}
.modules-menu {
font-family: $sub-font;
max-height: none;
z-index: 1020;
li {
white-space: nowrap;
}
.menu-drop.opened {
transform: rotateX(180deg);
}
.modules-menu-level-0 {
margin: 0 0 0.5em 0;
padding: 0;
list-style: none;
@media(min-width:769px){
background:#0e7ec0;
}
// width: 100%;
// display: flex;
// justify-content: space-around;
.has-dropdown.level-1.active {
.modules-menu-level-1 {
display: block;
}
}
.has-dropdown.level-2.active {
.modules-menu-level-2 {
display: block;
}
}
// .dropdown-toggle-icon {
// position: absolute;
// top: 0.5em;
// right: 0.3em;
// width: 2.5em;
// height: 2.5em;
// cursor: pointer;
// line-height: 2.5em;
// font-size: 1em;
// text-align: center;
// border-radius: 0.13em;
// }
.menu-drop {
position: absolute;
top: 0.5em;
right: 0.3em;
width: 2.5em;
height: 2.5em;
cursor: pointer;
line-height: 2.5em;
font-size: 1em;
text-align: center;
border-radius: 0.13em;
}
// .dropdown-toggle-icon.level-1 {
// background-color: lighten($theme-gray, 10%);
// }
// .dropdown-toggle-icon.level-2 {
// background-color: lighten($theme-gray, 10%);
// }
& > li {
position: relative;
margin: 0;
padding: 0.2em 0.5em;
border-bottom:0.5px solid #ffffff73;
& > a {
display: block;
padding: 1.125em 0;
font-family: $main-font;
width: 100%;
word-break: normal;
white-space: normal;
}
&:hover {
background-color:#004f76!important;
& > a {
color: #fff;
}
@media (min-width: $screen-sm) {
background-color:#004f76!important;
border-left: 4px solid #0e7ec0;
}
}
@media (min-width: $screen-sm) {
width: 100%;
position: relative;
margin: 0;
padding: 0;
transition: .3s;
&:first-child {
margin-left: 0;
}
&:nth-child(even){
background-color: #005f8e;
}
&:last-child {
margin-right: 0;
.modules-menu-level-1 {
&:before {
right: 0.625em;
left: auto;
}
& > li {
padding-right: 1em;
padding-left: 1em;
& > a {
padding-left: 0;
}
}
.modules-menu-level-2 {
right: 100%;
left: auto;
}
}
}
& > a {
padding: 1rem;
color: #fff;
}
&:hover {
.modules-menu-level-1 {
display: block;
transition: opacity 0.3s, top 0.3s;
}
}
}
}
}
.modules-menu-level-1 {
display: none;
min-width: 100%;
left: 100%;
top: 0;
margin: 0;
padding: 0;
background-color: #004f76;
list-style: none;
z-index: 1;
& > li {
position: relative;
& + li {
border-top: 0.0625em solid lighten(#004f76, 5%);
}
& > a {
display: block;
padding: 1em 1.5em;
font-family: $main-font;
font-size: 0.938em;
color: #fff;
@media(max-width: $screen-xs){
word-break: normal;
white-space: normal;
}
}
&:hover {
background-color: #006699;
& > a {
color: #fff;
}
}
}
@media (min-width: $screen-sm) {
position: absolute;
& > li {
padding-right: 2em;
& > a {
padding-left: 1em;
}
&:hover {
.modules-menu-level-2 {
display: block;
}
}
}
}
}
.modules-menu-level-2 {
display: none;
margin: 0;
padding: 0;
background-color: $theme-gray;
list-style: none;
& > li {
& + li {
border-top: 0.0625em solid lighten($theme-gray, 5%);
}
& > a {
display: block;
padding: 0.9em 3em;
font-family: $main-font;
color: #fff;
}
&:hover {
background-color: $theme-color-second;
}
}
@media (min-width: $screen-sm) {
position: absolute;
top: 0;
left: 100%;
& > li > a {
padding-left: 1em;
}
}
}
}
.has-mobile-dropdown {
.modules-menu {
.dropdown-toggle-icon {
display: block;
}
}
}
@media (max-width: 767px) {
.modules-menu .modules-menu-level-0 {
flex-direction: column;
}
}
//mobile
.mobile-menu {
z-index: 1051;
width: 100vw;
position: fixed;
top: 0;
right: 0;
bottom: 0;
display: none;
&.active {
display: block;
}
.modules-menu {
width: 80%;
position: absolute;
right: 0;
background:#0e7ec0;
height: 100%;
top: 0;
padding-top: 40px;
}
.modules-menu .modules-menu-level-0 > li > a, .modules-menu .modules-menu-level-0 .menu-drop,.modules-menu .modules-menu-level-0 > li { color: #fff; }
.navbar-toggle {
position: absolute;
left: 0;
background: transparent;
top: 40px;
z-index: 1;
height: 100vh;
margin: 0;
width: 20%;
border: 0;
}
.cover {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.8);
z-index: 0;
}
}
//覆蓋bootstrap nav設定
.mobile-menu .modules-menu.collapsing {
overflow:unset !important;
transform: translateX(100%);
-webkit-transition-timing-function:ease;
-o-transition-timing-function:ease;
transition-timing-function:ease;
-webkit-transition-duration:.35s;
-o-transition-duration:.35s;
transition-duration:.35s;
-webkit-transition-property:transform;
-o-transition-property:transform;
transition-property:transform;
}
.mobile-menu .modules-menu.collapse.in {
transform: translateX(100%);
-webkit-transition-timing-function:ease;
-o-transition-timing-function:ease;
transition-timing-function:ease;
-webkit-transition-duration:.35s;
-o-transition-duration:.35s;
transition-duration:.35s;
-webkit-transition-property:transform;
-o-transition-property:transform;
transition-property:transform;
}
.mobile-menu .collapse.navbar-collapse.modules-menu {
overflow-y: scroll;
transform: translateX(0%);
}