Skip to content

Instantly share code, notes, and snippets.

@charliewilco
Last active August 29, 2015 14:16
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 charliewilco/5f6db7791195f2f0663e to your computer and use it in GitHub Desktop.
Save charliewilco/5f6db7791195f2f0663e to your computer and use it in GitHub Desktop.
Typographic Utilities
.caps { text-transform: uppercase; }
.lower { text-transform: lowercase; }
.tt-none { text-transform: none; }
$dirs: left, right, center;
@each $dir in $dirs {
.align-#{$dir} { text-align: #{$dir}; }
}
$ws: 300, 400, 700;
@each $w in $ws {
.w-#{$w} { font-weight: $w; }
}
@for $i from -2 through 5 {
.lt-#{$i} { letter-spacing: #{$i}px; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment