First attempt at using a hamburger menu on mobile
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
a1ccc4bb2e
commit
55a840ae35
4 changed files with 113 additions and 4 deletions
|
@ -74,3 +74,14 @@
|
|||
background-repeat:no-repeat;
|
||||
background-size:contain !important;
|
||||
}
|
||||
|
||||
.menu {
|
||||
min-height: 2.8rem; /* no way to control min height in Tachyons */
|
||||
max-height: 0; /* hide menu completely when burger unchecked */
|
||||
transition: max-height 0.5s; /* show/hide menu transition */
|
||||
}
|
||||
|
||||
/* when checkbox is checked, display menu (sibling element) */
|
||||
#burger:checked ~ .menu {
|
||||
max-height: 100%;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue