Skip to content

Instantly share code, notes, and snippets.

@imoddesign
Created December 18, 2015 08:28
Show Gist options
  • Select an option

  • Save imoddesign/8152938f4cf50234b5d8 to your computer and use it in GitHub Desktop.

Select an option

Save imoddesign/8152938f4cf50234b5d8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
/*
Convert Rem to Pixel
http://www.stubbornella.org/content/2013/07/01/easy-peasy-rem-conversion-with-sass/
*/
// Function
@function RemToPx($size) {
$remSize: $size / 16px;
@return #{$remSize}rem;
}
// Mixin
@mixin fontSize($size) {
font-size: $size; // Fallback to PX
font-size: RemToPx($size);
}
h1 {
@include fontSize(18px);
}
/*
Convert Rem to Pixel
http://www.stubbornella.org/content/2013/07/01/easy-peasy-rem-conversion-with-sass/
*/
h1 {
font-size: 18px;
font-size: 1.125rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment