Skip to content

Instantly share code, notes, and snippets.

@rupert-ong
Created March 12, 2012 15:34
Show Gist options
  • Save rupert-ong/2022687 to your computer and use it in GitHub Desktop.
Save rupert-ong/2022687 to your computer and use it in GitHub Desktop.
CSS: Sass Mixin - 3D Text
/**
* Design Shack 3D Text Mixin
*/
@mixin threedeetext($color) {
color: $color;
text-shadow:
0 2px 0 darken($color, 14%),
0 4px 0 darken($color, 16%),
0 6px 0 darken($color, 18%),
0 8px 0 darken($color, 20%),
3px 8px 15px rgba(0,0,0,0.1),
3px 8px 5px rgba(0,0,0,0.3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment