Skip to content

Instantly share code, notes, and snippets.

@mikelyons
Created September 19, 2014 03:43
Show Gist options
  • Save mikelyons/437fa89aa7890b0ede5f to your computer and use it in GitHub Desktop.
Save mikelyons/437fa89aa7890b0ede5f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
body {
font-size: 27px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment