Created
March 13, 2012 08:37
-
-
Save ivngrz/2027611 to your computer and use it in GitHub Desktop.
js css sass : 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
| @mixin text3d($color) { | |
| color: $color; | |
| text-shadow: 1px 1px 0px darken($color, 5%), | |
| 2px 2px 0px darken($color, 10%), | |
| 3px 3px 0px darken($color, 15%), | |
| 4px 4px 0px darken($color, 20%), | |
| 4px 4px 2px #000; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment