Skip to content

Instantly share code, notes, and snippets.

@trub
Created April 8, 2014 22:17
Show Gist options
  • Select an option

  • Save trub/10201488 to your computer and use it in GitHub Desktop.

Select an option

Save trub/10201488 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// Bourbon (v)
// ----
@import "bourbon/bourbon";
$columns: one two three;
$length: length($columns);
@while $length > 0 {
.block-#{nth($columns, $length)} {
width:em(10*$length);
}
$length: $length - 1;
}
.block-three {
width: 1.875em;
}
.block-two {
width: 1.25em;
}
.block-one {
width: 0.625em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment