Skip to content

Instantly share code, notes, and snippets.

@zumwalt
Created June 3, 2014 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zumwalt/b5ed76771ce58ca83b0e to your computer and use it in GitHub Desktop.
Save zumwalt/b5ed76771ce58ca83b0e to your computer and use it in GitHub Desktop.
Rotated text
@mixin rotated-text($num-letters: 100, $angle-span: 180deg, $angle-offset: 0deg) {
$angle-per-char: $angle-span / $num-letters;
@for $i from 1 through $num-letters {
.char#{$i} {
@include transform(rotate($angle-offset + $angle-per-char * $i));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment