Skip to content

Instantly share code, notes, and snippets.

@huyhong
Created June 25, 2009 19:28
Show Gist options
  • Save huyhong/136098 to your computer and use it in GitHub Desktop.
Save huyhong/136098 to your computer and use it in GitHub Desktop.
box-shadow CSS3 Sass mixin
// 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