Skip to content

Instantly share code, notes, and snippets.

@zachshallbetter
Created June 23, 2013 16:35
Show Gist options
  • Save zachshallbetter/5845620 to your computer and use it in GitHub Desktop.
Save zachshallbetter/5845620 to your computer and use it in GitHub Desktop.
An SCSS Mixing to give a semi-transparent text shadow around letters.
// SCSS mixin for letter embossing.
// A semi-transparent text shadow around letters to give the illusion of "letterpressing".
//
// @include letter-emboss(0.8);
@mixin letter-emboss($opacity){
text-shadow:white($opacity) 0 1px 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment