Skip to content

Instantly share code, notes, and snippets.

@jasonkmccoy
Created March 14, 2015 21:06
Show Gist options
  • Save jasonkmccoy/cd0b54d42fff4b36e5c7 to your computer and use it in GitHub Desktop.
Save jasonkmccoy/cd0b54d42fff4b36e5c7 to your computer and use it in GitHub Desktop.
Box-shadow mixin
@mixin box-shadow( $h: 10px , $v: 10px , $b: 0px , $s: 0px , $c: #000000 ) {
-webkit-box-shadow: $h $v $b $s $c;
-moz-box-shadow: $h $v $b $s $c;
box-shadow: $h $v $b $s $c;
}
/* Usage */
div {
@include box-shadow(8px, 8px);
}
@jasonkmccoy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment