Skip to content

Instantly share code, notes, and snippets.

@MichaelArestad
Created September 16, 2014 22:17
Show Gist options
  • Save MichaelArestad/ad51d9427d59a1715db8 to your computer and use it in GitHub Desktop.
Save MichaelArestad/ad51d9427d59a1715db8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
$i: 3;
@while $i > 0 {
.while-#{$i} { width: 30px * $i; }
$i: $i - 1;
}
.while-3 {
width: 90px;
}
.while-2 {
width: 60px;
}
.while-1 {
width: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment