Last active
June 14, 2016 06:14
-
-
Save tehmachine/4c49033942f7048caba0 to your computer and use it in GitHub Desktop.
This file contains 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
// Mobile navigation toggle button | |
@mixin hamburger-icon($width: 40px, | |
$height: 4px, | |
$gap: 5px, | |
$color: #fff, | |
$top: 0, | |
$left: 0) { | |
position: relative; | |
display: block; | |
width: $width; | |
height: (($height * 3) + ($gap * 2)); | |
&:before { | |
box-shadow: | |
0 ($height + $gap) 0 0 $color, | |
0 (($height * 2) + ($gap * 2)) 0 0 $color | |
; | |
background: $color; | |
content: ""; | |
position: absolute; | |
top: $top; | |
left: $left; | |
width: $width; | |
height: $height; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment