Created
June 24, 2014 20:14
-
-
Save codescribblr/5c9bf4ce23195e97b338 to your computer and use it in GitHub Desktop.
Hamburger Icon for mobile nav
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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