Created
March 12, 2012 15:34
-
-
Save rupert-ong/2022687 to your computer and use it in GitHub Desktop.
CSS: Sass Mixin - 3D Text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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