Created
August 7, 2011 10:15
-
-
Save micha149/1130271 to your computer and use it in GitHub Desktop.
3d text mixin for sass
This file contains 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 text-3d ($color, $distance: 5px, $angle: 45deg) { | |
$value: ""; | |
@for $i from 0px through $distance { | |
$horizontal: (1px - $i) (1px + $i) $color; | |
$vertical: (-1px - $i) (-1px + $i) darken($color, 20%); | |
@if $i > 0 { | |
$value: $value + ', '; | |
} | |
$value: $value + $horizontal + ", " + $vertical; | |
} | |
text-shadow: unquote($value); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment