Created
June 25, 2009 19:28
-
-
Save huyhong/136098 to your computer and use it in GitHub Desktop.
box-shadow CSS3 Sass 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
// box-shadow CSS3 Sass mixin | |
// http://www.w3.org/TR/css3-background/#the-box-shadow | |
= box-shadow(!horizontal_offset = 10px, !vertical_offset = 10px, !blur_radius = 5px, !box_color = #000) | |
:-webkit-box-shadow = !horizontal_offset !vertical_offset !blur_radius !box_color | |
:-moz-box-shadow = !horizontal_offset !vertical_offset !blur_radius !box_color | |
:box-shadow = !horizontal_offset !vertical_offset !blur_radius !box_color |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment