Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created July 23, 2014 08:49
Show Gist options
  • Save fieldoffice/9c4cf4a103e751d2f674 to your computer and use it in GitHub Desktop.
Save fieldoffice/9c4cf4a103e751d2f674 to your computer and use it in GitHub Desktop.
Sass Box Shadow Mixin
@mixin box-shadow($top, $left, $blur, $color, $inset:"") {
-webkit-box-shadow:$top $left $blur $color #{$inset};
-moz-box-shadow:$top $left $blur $color #{$inset};
box-shadow:$top $left $blur $color #{$inset};
}
@include box-shadow(inset 0, -12px, 0, rgba(0, 0, 0, 0.06));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment