Skip to content

Instantly share code, notes, and snippets.

@neurotech
Created February 23, 2013 11:13
Show Gist options
  • Select an option

  • Save neurotech/5019376 to your computer and use it in GitHub Desktop.

Select an option

Save neurotech/5019376 to your computer and use it in GitHub Desktop.
SASS Shadow
@mixin fuzzy-shadow($horiz : 0px , $vert : 2px , $blur : 5px , $spread : 0px , $color : #000000 , $opacity : 0.4) {
-webkit-box-shadow: $horiz $vert $blur $spread rgba($color, $opacity);
-moz-box-shadow: $horiz $vert $blur $spread rgba($color, $opacity);
box-shadow: $horiz $vert $blur $spread rgba($color, $opacity);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment