Skip to content

Instantly share code, notes, and snippets.

@codescribblr
Created June 24, 2014 20:14
Show Gist options
  • Select an option

  • Save codescribblr/5c9bf4ce23195e97b338 to your computer and use it in GitHub Desktop.

Select an option

Save codescribblr/5c9bf4ce23195e97b338 to your computer and use it in GitHub Desktop.
Hamburger Icon for mobile nav
#hamburger span, #hamburger span:before, #hamburger span:after {
cursor: pointer;
border-radius: 1px;
height: 5px;
width: 35px;
background: white;
position: absolute;
display: block;
content: '';
}
#hamburger span:before {
top: -10px;
}
#hamburger span:after {
bottom: -10px;
}
<a id="hamburger" href="#"><span></span></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment