Skip to content

Instantly share code, notes, and snippets.

@pablolobos
Created July 23, 2013 13:53
Show Gist options
  • Save pablolobos/6062500 to your computer and use it in GitHub Desktop.
Save pablolobos/6062500 to your computer and use it in GitHub Desktop.
mixin: rem-font-size
@function calculateRem($size) {
$remSize: $size / 16px;
@return $remSize * 1rem;
}
@mixin font-size($size) {
font-size: $size;
font-size: calculateRem($size);
}
//Usage
@include font-size(14px)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment