Skip to content

Instantly share code, notes, and snippets.

@l3kn
Created October 10, 2013 12:35
Show Gist options
  • Save l3kn/6917597 to your computer and use it in GitHub Desktop.
Save l3kn/6917597 to your computer and use it in GitHub Desktop.
// Sass
#Menu-button
display: none
&:checked ~ #Menu-wrapper
display: block
#Menu-label
display: block
text-align: center
font-size: 1.5em
#Menu-wrapper
display: none
@media screen and (min-width: 640px)
#Menu-label
display: none
#Menu-wrapper
display: block
// Html
<input id="Menu-button" type="checkbox" />
<label for="Menu-button" id="Menu-label" data-icon="menu" onclick></label>
<nav id="Menu-wrapper">
<ul>
...
</ul>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment