Skip to content

Instantly share code, notes, and snippets.

@souporserious
Created May 21, 2015 23:32
Show Gist options
  • Save souporserious/79fb27f1c15758095f04 to your computer and use it in GitHub Desktop.
Save souporserious/79fb27f1c15758095f04 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
$products: (name: Check-Ins, color: #7e648a), (name: Giving, color: #f9c134), (name: People, color: #4d6590), (name: Registrations, color: #469c98), (name: Resources, color: #8b351f), (name: Services, color: #679237), (name: Music-Stand, color: #39669c), (name: Projector, color: #faa730)
.modal__header
@each $product in $products
.#{map-get($product, name)} &
background-color: #{map-get($product, color)}
.Check-Ins .modal__header {
background-color: #7e648a;
}
.Giving .modal__header {
background-color: #f9c134;
}
.People .modal__header {
background-color: #4d6590;
}
.Registrations .modal__header {
background-color: #469c98;
}
.Resources .modal__header {
background-color: #8b351f;
}
.Services .modal__header {
background-color: #679237;
}
.Music-Stand .modal__header {
background-color: #39669c;
}
.Projector .modal__header {
background-color: #faa730;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment