Skip to content

Instantly share code, notes, and snippets.

@napotopia
Created November 14, 2013 16:15
Show Gist options
  • Save napotopia/7469557 to your computer and use it in GitHub Desktop.
Save napotopia/7469557 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@mixin drop-shadow($color:'#bdbdbd',$top:-1px, $left:2px, $blur:4px, $length:0, $inset:null) {
-moz-box-shadow: $top $left $blur $length $color $inset;
-webkit-box-shadow: $top $left $blur $length $color $inset;
box-shadow: $top $left $blur $length $color $inset;
}
.foo {
@include drop-shadow();
}
.foo {
-moz-box-shadow: -1px 2px 4px 0 "#bdbdbd";
-webkit-box-shadow: -1px 2px 4px 0 "#bdbdbd";
box-shadow: -1px 2px 4px 0 "#bdbdbd";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment