Skip to content

Instantly share code, notes, and snippets.

@micha149
Created August 7, 2011 10:15
Show Gist options
  • Save micha149/1130271 to your computer and use it in GitHub Desktop.
Save micha149/1130271 to your computer and use it in GitHub Desktop.
3d text mixin for sass
@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