Created
August 25, 2015 03:50
-
-
Save finteractive/87f4cbb6aad19f0a0055 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$base-font-size: 21px !default; | |
@function em($px, $base: $base-font-size) { | |
@return ($px / $base) * 1em; | |
} | |
@function rem($px, $base: $base-font-size) { | |
@return ($px / $base) * 1rem; | |
} | |
.example { | |
padding: rem(40px); | |
margin: em(20px) em(15px); | |
} |
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
.example { | |
padding: 1.90476rem; | |
margin: 0.95238em 0.71429em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment