Skip to content

Instantly share code, notes, and snippets.

@svenheden
Created May 22, 2015 13:42
Show Gist options
  • Save svenheden/a35ac4837cc50c59aa06 to your computer and use it in GitHub Desktop.
Save svenheden/a35ac4837cc50c59aa06 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
$font-base: 16;
@mixin font-size($size: 1.6, $line: $size * 1.5){
font-size: ceil($size / $font-base) + rem;
line-height: ceil($line / $font-base) + rem;
font-size: $size + px;
line-height: $line + px;
}
.foo {
@include font-size(12);
}
.bar {
@include font-size(14);
}
.baz {
@include font-size(16);
}
.foo {
font-size: 1rem;
line-height: 2rem;
font-size: 12px;
line-height: 18px;
}
.bar {
font-size: 1rem;
line-height: 2rem;
font-size: 14px;
line-height: 21px;
}
.baz {
font-size: 1rem;
line-height: 2rem;
font-size: 16px;
line-height: 24px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment