Created
February 17, 2016 10:30
-
-
Save gogachinchaladze/51e2edaef0c0fecb581d to your computer and use it in GitHub Desktop.
Revisions
-
gogachinchaladze created this gist
Feb 17, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ // ---- // libsass (v3.2.5) // ---- $browser-context : 16px; @function em($pixels, $context: $browser-context) { @return #{$pixels/$context}em; } #some-div{ font-size:em(32px); } #some-other-div{ font-size:em(15px,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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ #some-div { font-size: 2em; } #some-other-div { font-size: 0.5em; }