Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /**
  2. * converts normal font size to rem and gives a
  3. * fallback for browsers that do not support rem
  4. *
  5. * html font-size must be set to 62.5%
  6. *
  7. * i.e: @include font-size(16);
  8. * output: font-size: 1.6rem;
  9. * font-size: 16px;
  10. */
  11. @mixin font-size($sizeValue: 16) {
  12. font-size: $sizeValue + px;
  13. font-size: ($sizeValue / 10) + rem;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement