Mobile menu refinements
This commit is contained in:
parent
6a28203be0
commit
4c2ba87b06
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -31,6 +31,10 @@ production stylesheet in assets/built/screen.css using: gulp dev
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gh-main {
|
||||||
|
padding: 0 4vw;
|
||||||
|
}
|
||||||
|
|
||||||
/* Header */
|
/* Header */
|
||||||
.gh-head {
|
.gh-head {
|
||||||
padding: 20px 4vw;
|
padding: 20px 4vw;
|
||||||
|
@ -124,13 +128,13 @@ production stylesheet in assets/built/screen.css using: gulp dev
|
||||||
/* Menu
|
/* Menu
|
||||||
/* ---------------------------------------------------------- */
|
/* ---------------------------------------------------------- */
|
||||||
|
|
||||||
.burger {
|
.gh-burger {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: none;
|
display: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.burger-box {
|
.gh-burger-box {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -139,12 +143,12 @@ production stylesheet in assets/built/screen.css using: gulp dev
|
||||||
height: 33px;
|
height: 33px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.burger-inner {
|
.gh-burger-inner {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.burger-box::before {
|
.gh-burger-box::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: block;
|
display: block;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -159,8 +163,8 @@ production stylesheet in assets/built/screen.css using: gulp dev
|
||||||
will-change: transform, width;
|
will-change: transform, width;
|
||||||
}
|
}
|
||||||
|
|
||||||
.burger-inner::before,
|
.gh-burger-inner::before,
|
||||||
.burger-inner::after {
|
.gh-burger-inner::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: block;
|
display: block;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -175,57 +179,48 @@ production stylesheet in assets/built/screen.css using: gulp dev
|
||||||
will-change: transform, width;
|
will-change: transform, width;
|
||||||
}
|
}
|
||||||
|
|
||||||
.burger-inner::before {
|
.gh-burger-inner::before {
|
||||||
transform: translatey(-6px);
|
transform: translatey(-6px);
|
||||||
}
|
}
|
||||||
.burger-inner::after {
|
.gh-burger-inner::after {
|
||||||
transform: translatey(6px);
|
transform: translatey(6px);
|
||||||
}
|
}
|
||||||
|
|
||||||
body:not(.gh-head-open) .burger:hover .burger-inner::before {
|
body:not(.gh-head-open) .gh-burger:hover .gh-burger-inner::before {
|
||||||
transform: translatey(-8px);
|
transform: translatey(-8px);
|
||||||
}
|
}
|
||||||
body:not(.gh-head-open) .burger:hover .burger-inner::after {
|
body:not(.gh-head-open) .gh-burger:hover .gh-burger-inner::after {
|
||||||
transform: translatey(8px);
|
transform: translatey(8px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-head-open .burger-box::before {
|
.gh-head-open .gh-burger-box::before {
|
||||||
width: 0;
|
width: 0;
|
||||||
transform: translatex(19px);
|
transform: translatex(19px);
|
||||||
transition: transform 200ms cubic-bezier(.2,.7,.3,1), width 200ms cubic-bezier(.2,.7,.3,1);
|
transition: transform 200ms cubic-bezier(.2,.7,.3,1), width 200ms cubic-bezier(.2,.7,.3,1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-head-open .burger-inner::before {
|
.gh-head-open .gh-burger-inner::before {
|
||||||
width: 26px;
|
width: 26px;
|
||||||
transform: translatex(6px) rotate(135deg);
|
transform: translatex(6px) rotate(135deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-head-open .burger-inner::after {
|
.gh-head-open .gh-burger-inner::after {
|
||||||
width: 26px;
|
width: 26px;
|
||||||
transform: translatex(6px) rotate(-135deg);
|
transform: translatex(6px) rotate(-135deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@media (max-width: 900px) {
|
@media (max-width: 900px) {
|
||||||
.burger {
|
.gh-burger {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
.gh-head {
|
.gh-head {
|
||||||
height: 86px;
|
|
||||||
transition: all 0.4s ease-out;
|
transition: all 0.4s ease-out;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.gh-head .gh-container {
|
.gh-head .gh-container {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
grid-template-rows: auto 1fr auto;
|
|
||||||
}
|
|
||||||
.gh-head-actions,
|
|
||||||
.gh-head-menu {
|
|
||||||
position: relative;
|
|
||||||
z-index: -1;
|
|
||||||
height: auto;
|
|
||||||
transition: height 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
|
|
||||||
}
|
}
|
||||||
.gh-head-brand {
|
.gh-head-brand {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -237,43 +232,28 @@ body:not(.gh-head-open) .burger:hover .burger-inner::after {
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
.gh-head-open {
|
.gh-head-menu {
|
||||||
background: rgba(0,0,0,1);
|
|
||||||
transition: background 0.5s ease-out;
|
|
||||||
transition-delay: 0.25;
|
|
||||||
overflow: hidden;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gh-head-open .gh-head {
|
|
||||||
height: 100vh;
|
|
||||||
overflow-y: scroll;
|
|
||||||
transition: height 0.2s ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gh-head-open .gh-head-actions,
|
|
||||||
.gh-head-open .gh-head-menu {
|
|
||||||
z-index: 9999;
|
|
||||||
height: auto;
|
|
||||||
transition: height 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
|
|
||||||
}
|
|
||||||
|
|
||||||
.gh-head-open .gh-head-menu {
|
|
||||||
align-self: center;
|
align-self: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
margin: 0 0 10vh;
|
margin: 0 0 10vh;
|
||||||
|
font-weight: 300;
|
||||||
font-size: 3.6rem;
|
font-size: 3.6rem;
|
||||||
line-height: 1.5em;
|
line-height: 1.1em;
|
||||||
|
}
|
||||||
|
.gh-head-menu .nav li {
|
||||||
|
margin: 5px 0;
|
||||||
|
}
|
||||||
|
.gh-head-menu .nav a {
|
||||||
|
padding: 8px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-head-menu .nav {
|
.gh-head-menu .nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-head-actions {
|
.gh-head-actions {
|
||||||
padding: 20px 0;
|
padding: 20px 0;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -282,8 +262,37 @@ body:not(.gh-head-open) .burger:hover .burger-inner::after {
|
||||||
.gh-head-actions a {
|
.gh-head-actions a {
|
||||||
margin: 0 10px;
|
margin: 0 10px;
|
||||||
}
|
}
|
||||||
|
/* Hide collapsed content */
|
||||||
|
.gh-head-actions,
|
||||||
|
.gh-head-menu {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
/* Open the menu */
|
||||||
|
.gh-head-open {
|
||||||
|
overflow: hidden;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
.gh-head-open .gh-head {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
.gh-head-open .gh-head .gh-container {
|
||||||
|
grid-template-rows: auto 1fr auto;
|
||||||
|
}
|
||||||
|
.gh-head-open .gh-head-actions,
|
||||||
|
.gh-head-open .gh-head-menu {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
.gh-head-menu {
|
||||||
|
font-size: 6vmin;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Footer
|
/* Footer
|
||||||
|
|
|
@ -26,9 +26,9 @@
|
||||||
{{@site.title}}
|
{{@site.title}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</a>
|
</a>
|
||||||
<a class="burger" role="button">
|
<a class="gh-burger" role="button">
|
||||||
<div class="burger-box">
|
<div class="gh-burger-box">
|
||||||
<div class="burger-inner"></div>
|
<div class="gh-burger-inner"></div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -74,7 +74,7 @@
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
// Mobile Menu Trigger
|
// Mobile Menu Trigger
|
||||||
$('.burger').click(function () {
|
$('.gh-burger').click(function () {
|
||||||
$('body').toggleClass('gh-head-open');
|
$('body').toggleClass('gh-head-open');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue