Skip to content

Instantly share code, notes, and snippets.

@mtr
Created February 14, 2015 22:09
Show Gist options
  • Save mtr/c05a91baf8b35c6eef16 to your computer and use it in GitHub Desktop.
Save mtr/c05a91baf8b35c6eef16 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
$sizes: (
small: (
height: 10px,
width: 20px
),
medium: (
height: 30px,
width: 40px
),
large: (
height: 50px,
width: 60px
)
);
@each $size, $dimensions in $sizes {
.#{$size}-box {
height: map-get($dimensions, height);
width: map-get($dimensions, width);
}
}
.small-box {
height: 10px;
width: 20px;
}
.medium-box {
height: 30px;
width: 40px;
}
.large-box {
height: 50px;
width: 60px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment