Skip to content

Instantly share code, notes, and snippets.

@cwmanning
Created October 15, 2014 17:49
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 cwmanning/bfc981d4f9343c61f931 to your computer and use it in GitHub Desktop.
Save cwmanning/bfc981d4f9343c61f931 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
$colors: (
birthday: #0989cb,
gender: #8666ae,
weight: #02bba7,
height: #ff8178
);
$widths: (
birthday: 10px,
gender: 20px,
weight: 30px,
height: 40px
);
@each $stat, $color in $colors {
.#{$stat} {
color: $color;
width: map-get($widths, $stat);
}
}
.birthday {
color: #0989cb;
width: 10px;
}
.gender {
color: #8666ae;
width: 20px;
}
.weight {
color: #02bba7;
width: 30px;
}
.height {
color: #ff8178;
width: 40px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment