Created
September 19, 2014 03:43
-
-
Save mikelyons/437fa89aa7890b0ede5f 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.0.rc.1) | |
// ---- | |
@function pow($x, $y) { | |
$ret: 1; | |
@if $y > 0 { | |
@for $i from 1 through $y { | |
$ret: $ret * $x; | |
} | |
} | |
@else { | |
@for $i from $y to 0 { | |
$ret: $ret / $x; | |
} | |
} | |
@return $ret; | |
} | |
body { | |
font-size: pow(3, 3) * 1px; | |
} |
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
body { | |
font-size: 27px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment