Skip to content

Instantly share code, notes, and snippets.

@eric-wood
Created June 4, 2014 16:07
Show Gist options
  • Save eric-wood/1df2bf3166dd6c2bf79c to your computer and use it in GitHub Desktop.
Save eric-wood/1df2bf3166dd6c2bf79c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
$class-slug: for;
@for $i from 1 through 4 {
.#{$class-slug}-#{$i} {
width: 60px + $i;
}
}
.for-1 {
width: 61px;
}
.for-2 {
width: 62px;
}
.for-3 {
width: 63px;
}
.for-4 {
width: 64px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment