Skip to content

Instantly share code, notes, and snippets.

@DeCotii
Created August 14, 2015 14:32
Show Gist options
  • Save DeCotii/e8190a901ce79263f322 to your computer and use it in GitHub Desktop.
Save DeCotii/e8190a901ce79263f322 to your computer and use it in GitHub Desktop.
.font-size(@font-size-sm, @font-size-md, @font-size-lg) {
font-size: @font-size-sm * 1px;
font-size: (@font-size-sm/@remSm) * 1rem;
line-height: @font-size-sm * 1.6364 * 1px;
@media @tablet {
font-size: @font-size-md * 1px;
font-size: (@font-size-md/@remMd) * 1rem;
line-height: @font-size-md * 1.6364 * 1px;
}
@media @desktop-lg {
font-size: @font-size-lg * 1px;
font-size: (@font-size-lg/@remLg) * 1rem;
line-height: @font-size-lg * 1.6364 * 1px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment