Skip to content

Instantly share code, notes, and snippets.

@devilshaircut
Created November 14, 2013 05:14
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 devilshaircut/7461770 to your computer and use it in GitHub Desktop.
Save devilshaircut/7461770 to your computer and use it in GitHub Desktop.
#hamburger-icon {
display: none;
float: left;
width: 100%;
height: 50px;
margin: 0 0 20px 0;
padding: 0 20px;
line-height: 50px;
background: #cccccc;
cursor: pointer;
position: fixed;
z-index: 10;
@include box-sizing(border-box);
@include transition-property(left);
@include transition-duration(0.25s);
@include transition-timing-function(ease-in);
@include transition-delay(0);
@media (max-width: 767px) {
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment