Created
September 16, 2014 22:56
-
-
Save MichaelArestad/caf37d528d7db6955de2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
$root-font:( | |
color: #404040, | |
font-size: 15px, | |
line-height: 1.6 | |
); | |
@function em($value, $context: map-get($root-font, font-size)) { | |
@return ($value / $context * 1em); | |
} | |
p { | |
font-size: em(30px); | |
} |
This file contains hidden or 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
p { | |
font-size: 2em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment