Skip to content

Instantly share code, notes, and snippets.

@Tonours
Created October 25, 2013 05:04
Show Gist options
  • Save Tonours/7149635 to your computer and use it in GitHub Desktop.
Save Tonours/7149635 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.7)
// ----
$cols: (
half: 50%,
full: 100%,
third: 33.3333333%,
quarter: 25%,
);
@each $col, $width in $cols{
.#{$col}{
width: $width;
}
}
.half {
width: 50%;
}
.full {
width: 100%;
}
.third {
width: 33.33333%;
}
.quarter {
width: 25%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment