Skip to content

Instantly share code, notes, and snippets.

View Ig0r-M-magic42's full-sized avatar
🔬
Meditating

Igor Ig0r-M-magic42

🔬
Meditating
View GitHub Profile
@xonic
xonic / rem
Created April 18, 2014 09:03
A Sass unitless numbers mixin for rem values with automatic px fallback
// Mixin that allows to specify arbitrary CSS properties with
// unitless numbers. The output has rem unit with pixel fallback.
// Shorthand assignments are supported too!
$base_line: 10;
@mixin rem($property, $values, $important:"")
{
// Placeholder variables
$shorthand_px: "";
$shorthand_rem: "";