Skip to content

Instantly share code, notes, and snippets.

@mturjak
Created November 6, 2013 09:05
Show Gist options
  • Select an option

  • Save mturjak/7333067 to your computer and use it in GitHub Desktop.

Select an option

Save mturjak/7333067 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@for $i from 1 through 5 {
$x: if($i < 2, 100%, $x - 10);
.item-#{$i} {
width: $x;
}
}
.item-1 {
width: 100%;
}
.item-2 {
width: 90%;
}
.item-3 {
width: 80%;
}
.item-4 {
width: 70%;
}
.item-5 {
width: 60%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment