Skip to content

Instantly share code, notes, and snippets.

@jdsteinbach
Created March 27, 2014 15:01
Show Gist options
  • Select an option

  • Save jdsteinbach/9809507 to your computer and use it in GitHub Desktop.

Select an option

Save jdsteinbach/9809507 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// ----
$fsizes: (
p-smallest: 16,
p-small: 18,
p: 22,
subheading: 24,
heading-small: 32,
heading: 42,
hero-q: 156,
hero-a: 84
);
@each $label, $size in $fsizes {
%fs-#{$label} {
font-size: $size;
}
}
@each $label, $size in $fsizes {
.fs-#{$label} {
font-size: $size;
}
}
.fs-p-smallest {
font-size: 16; }
.fs-p-small {
font-size: 18; }
.fs-p {
font-size: 22; }
.fs-subheading {
font-size: 24; }
.fs-heading-small {
font-size: 32; }
.fs-heading {
font-size: 42; }
.fs-hero-q {
font-size: 156; }
.fs-hero-a {
font-size: 84; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment