Skip to content

Instantly share code, notes, and snippets.

@TechFounder
Created January 5, 2015 22:50
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 TechFounder/9e393983cca4ec91fc81 to your computer and use it in GitHub Desktop.
Save TechFounder/9e393983cca4ec91fc81 to your computer and use it in GitHub Desktop.
SASS mixin font sizes
$min-font-size: 10
$max-font-size: 50
@mixin font-sizes
@for $i from $min-font-size through $max-font-size
.font-#{$i}px
font-size: ($i / 16)em
@extend .font-normal
@include font-sizes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment