Created
September 11, 2012 20:52
-
-
Save sebald/3701967 to your computer and use it in GitHub Desktop.
SASS Mixin box-shadow
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($shadow) { | |
-webkit-box-shadow: #{$shadow}; | |
-moz-box-shadow: #{$shadow}; | |
box-shadow: #{$shadow}; | |
} | |
@include box-shadow(0 3px 3px -2px rgba(0,0,0,0.6)); | |
@include box-shadow("inset 0 2px 4px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.20)"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment