Skip to content

Instantly share code, notes, and snippets.

@airen
Created August 8, 2014 14:26
Show Gist options
  • Save airen/4af5c4bc7b45f47bbca3 to your computer and use it in GitHub Desktop.
Save airen/4af5c4bc7b45f47bbca3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.3)
// Compass (v1.0.0.rc.1)
// ----
//http://sachagreif.com/useful-sass-mixins/
@mixin box-emboss($opacity, $opacity2){
box-shadow:white($opacity) 0 1px 0, inset black($opacity2) 0 1px 0;
}
//Usage:
.box{
@include box-emboss(0.8, 0.05);
}
.box {
box-shadow: white(0.8) 0 1px 0, inset black(0.05) 0 1px 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment