Created
January 26, 2019 18:42
-
-
Save hugofabricio/7f9e5d2380a4ebc468aa6388bbca8689 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Rem | |
*/ | |
$rem-baseline: 16px !default; | |
$rem-fallback: false !default; | |
$rem-px-only: false !default; | |
@function rem-separator($list, $separator: false) { | |
@if $separator == "comma" or $separator == "space" { | |
@return append($list, null, $separator); | |
} | |
@if function-exists("list-separator") == true { | |
@return list-separator($list); | |
} | |
// list-separator polyfill by Hugo Giraudel (https://sass-compatibility.github.io/#list_separator_function) | |
$test-list: (); | |
@each $item in $list { | |
$test-list: append($test-list, $item, space); | |
} | |
@return if($test-list == $list, space, comma); | |
} | |
@mixin rem-baseline($zoom: 100%) { | |
font-size: $zoom / 16px * $rem-baseline; | |
} | |
@function rem-convert($to, $values...) { | |
$result: (); | |
$separator: rem-separator($values); | |
@each $value in $values { | |
@if type-of($value) == "number" and unit($value) == "rem" and $to == "px" { | |
$result: append($result, $value / 1rem * $rem-baseline, $separator); | |
} @else if type-of($value) == "number" and unit($value) == "px" and $to == "rem" { | |
$result: append($result, $value / $rem-baseline * 1rem, $separator); | |
} @else if type-of($value) == "list" { | |
$value-separator: rem-separator($value); | |
$value: rem-convert($to, $value...); | |
$value: rem-separator($value, $value-separator); | |
$result: append($result, $value, $separator); | |
} @else { | |
$result: append($result, $value, $separator); | |
} | |
} | |
@return if(length($result) == 1, nth($result, 1), $result); | |
} | |
@function rem($values...) { | |
@if $rem-px-only { | |
@return rem-convert(px, $values...); | |
} @else { | |
@return rem-convert(rem, $values...); | |
} | |
} | |
@mixin rem($properties, $values...) { | |
@if type-of($properties) == "map" { | |
@each $property in map-keys($properties) { | |
@include rem($property, map-get($properties, $property)); | |
} | |
} @else { | |
@each $property in $properties { | |
@if $rem-fallback or $rem-px-only { | |
#{$property}: rem-convert(px, $values...); | |
} | |
@if not $rem-px-only { | |
#{$property}: rem-convert(rem, $values...); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment