Skip to content

Instantly share code, notes, and snippets.

@Cathrin-Demyokhina
Created June 15, 2016 10:06
Show Gist options
  • Save Cathrin-Demyokhina/796c277f209c1573a58ec5b1054ce260 to your computer and use it in GitHub Desktop.
Save Cathrin-Demyokhina/796c277f209c1573a58ec5b1054ce260 to your computer and use it in GitHub Desktop.
@mixin box-shadow($top, $left, $blur, $size, $color, $inset: false) {
@if $inset {
-webkit-box-shadow:inset $top $left $blur $size $color;
-moz-box-shadow:inset $top $left $blur $size $color;
box-shadow:inset $top $left $blur $size $color;
} @else {
-webkit-box-shadow: $top $left $blur $size $color;
-moz-box-shadow: $top $left $blur $size $color;
box-shadow: $top $left $blur $size $color;
}
}
/* @include box-shadow(1px,1px,1px,0, #fff, true); */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment