Skip to content

Instantly share code, notes, and snippets.

@sdempsey
Created February 26, 2016 17:43
Show Gist options
  • Save sdempsey/a905e50882ac5e129620 to your computer and use it in GitHub Desktop.
Save sdempsey/a905e50882ac5e129620 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
.column-layouts {
&-container {
display: flex;
}
@for $i from 1 through 4 {
&.columns-#{$i} &-column {
width: 100% / $i;
}
}
}
.column-layouts-container {
display: flex;
}
.column-layouts.columns-1 .column-layouts-column {
width: 100%;
}
.column-layouts.columns-2 .column-layouts-column {
width: 50%;
}
.column-layouts.columns-3 .column-layouts-column {
width: 33.33333%;
}
.column-layouts.columns-4 .column-layouts-column {
width: 25%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment