Skip to content

Instantly share code, notes, and snippets.

@eduardoboucas
Created January 13, 2015 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eduardoboucas/8f6cad0e4b88baebcf17 to your computer and use it in GitHub Desktop.
Save eduardoboucas/8f6cad0e4b88baebcf17 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$granularity: 3;
@for $i from 1 through $granularity {
@for $j from 1 through $i {
.col-#{$j}-#{$i} {
width: $j/$i * 100%;
}
}
}
.col-1-1 {
width: 100%;
}
.col-1-2 {
width: 50%;
}
.col-2-2 {
width: 100%;
}
.col-1-3 {
width: 33.33333%;
}
.col-2-3 {
width: 66.66667%;
}
.col-3-3 {
width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment