Skip to content

Instantly share code, notes, and snippets.

@roryashfordbentley
Created September 30, 2014 17:07
Show Gist options
  • Save roryashfordbentley/1b904f7bc6a7a05131c3 to your computer and use it in GitHub Desktop.
Save roryashfordbentley/1b904f7bc6a7a05131c3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v2.0.0)
// ----
@mixin equivalent_fractions($numerator,$denominator){
@for $i from -$numerator through -1{
@if($numerator % abs($i) == 0 and $denominator % abs($i) == 0){
out: #{$numerator / abs($i)}-#{$denominator / abs($i)};
}
}
}
.test{
@include equivalent_fractions(8,12);
}
.test {
out: 2-3;
out: 4-6;
out: 8-12; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment