Created
October 15, 2014 17:49
-
-
Save cwmanning/bfc981d4f9343c61f931 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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