Skip to content

Instantly share code, notes, and snippets.

@hlb
Created July 25, 2013 03:05
Show Gist options
  • Save hlb/6076613 to your computer and use it in GitHub Desktop.
Save hlb/6076613 to your computer and use it in GitHub Desktop.
@mixin box-shadow($shadows...) {
-moz-box-shadow: $shadows;
-webkit-box-shadow: $shadows;
box-shadow: $shadows;
}
.shadows {
@include box-shadow(0px 4px 5px #666, 2px 6px 10px #999);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment