Skip to content

Instantly share code, notes, and snippets.

@stevetrask
Last active August 29, 2015 14:25
Show Gist options
  • Save stevetrask/312544ba15d53b0c1ef5 to your computer and use it in GitHub Desktop.
Save stevetrask/312544ba15d53b0c1ef5 to your computer and use it in GitHub Desktop.
Drop shadow mixin
@mixin drop-shadow ($x: 1px, $y: 1px, $blur: 2px, $spread: 0, $alpha: 0.25) {
-webkit-box-shadow: $x $y $blur $spread rgba(204, 204, 204, $alpha);
-moz-box-shadow: $x $y $blur $spread rgba(204, 204, 204, $alpha);
box-shadow: $x $y $blur $spread rgba(204, 204, 204, $alpha);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment