Skip to content

Instantly share code, notes, and snippets.

@erikflowers
Created September 26, 2013 06:01
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save erikflowers/6710372 to your computer and use it in GitHub Desktop.
Save erikflowers/6710372 to your computer and use it in GitHub Desktop.
An easy way to include just super standard 1px text shadows. No frills.
.textShadowBlack(@shadow: 0 1px 0px rgba(0,0,0,1)) {
text-shadow: @shadow;
}
.textShadowWhite(@shadow: 0 1px 0px rgba(255,255,255,1)) {
text-shadow: @shadow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment