Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // ----
  2. // libsass (v3.2.5)
  3. // ----
  4.  
  5. $font-size1: 12;
  6. $font-size2: 24;
  7.  
  8. @mixin line-height($lh){
  9. line-height: ($lh/10) +px;
  10. line-height: ($lh*1.5) +rem;
  11. }
  12.  
  13. @mixin font-size($size){
  14. @include line-height($size);
  15. font-size: $size+px;
  16. font-size: $size+rem;
  17. }
  18.  
  19.  
  20.  
  21. .test {
  22. @include font-size($font-size2);
  23. }
  24.  
  25. .bob {
  26. @include font-size($font-size1);
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement