Skip to content

Instantly share code, notes, and snippets.

@Pickra
Created September 23, 2015 14:40
Show Gist options
  • Save Pickra/d630072594a55984e052 to your computer and use it in GitHub Desktop.
Save Pickra/d630072594a55984e052 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$colourList: (
arts: (
color: #bbb
),
bidness: (
color: #ddd
)
);
@each $item, $color in $colourList {
.#{$item} {
color: map-get($color, color);
}
}
.arts {
color: #bbb;
}
.bidness {
color: #ddd;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment