Created
July 23, 2014 08:49
-
-
Save fieldoffice/9c4cf4a103e751d2f674 to your computer and use it in GitHub Desktop.
Sass Box Shadow Mixin
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
@mixin box-shadow($top, $left, $blur, $color, $inset:"") { | |
-webkit-box-shadow:$top $left $blur $color #{$inset}; | |
-moz-box-shadow:$top $left $blur $color #{$inset}; | |
box-shadow:$top $left $blur $color #{$inset}; | |
} | |
@include box-shadow(inset 0, -12px, 0, rgba(0, 0, 0, 0.06)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment