53 lines
823 B
SCSS
53 lines
823 B
SCSS
/*
|
|
* Hamburger Menu
|
|
* Mobile-Centric openable menu with a hamburger icon to toggle.
|
|
*
|
|
* Dependencies:
|
|
* styles/settings/colors.scss
|
|
* styles/settings/z.scss
|
|
*
|
|
* Version:
|
|
* 1.0.0 - 2018/06/12
|
|
*/
|
|
.o-hamburger-menu {
|
|
border: 1px solid red;
|
|
|
|
&__menu {
|
|
@extend %t-list-blank;
|
|
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: $s-color--menu__background;
|
|
|
|
z-index: $s-z--menu;
|
|
}
|
|
|
|
&__link {
|
|
@extend %t-list-litem-blank;
|
|
}
|
|
|
|
&__button {
|
|
position: relative;//Helps us win the Z-Fight
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0.5em;
|
|
cursor: pointer;
|
|
z-index: $s-z--menu-button;
|
|
}
|
|
|
|
&__icon {
|
|
display: block;
|
|
}
|
|
|
|
|
|
&.is-open {
|
|
.o-hamburger-menu__menu {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|