Skip to content

Instantly share code, notes, and snippets.

@SaraSoueidan
Created June 8, 2013 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SaraSoueidan/5733801 to your computer and use it in GitHub Desktop.
Save SaraSoueidan/5733801 to your computer and use it in GitHub Desktop.
3-lines Nav/Menu Icon
<div id="lines" class="btn"></div>
.btn {
position: relative;
margin-top:2%;
border: 2px solid black;
border-radius: 2px;
height: 36px;
width:36px;
}
#lines:before {
border-bottom: 17px double black;
border-top: 6px solid black;
content:"";
height: 5px;
position: absolute;
right:3px;
top: 4px;
width:30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment