Skip to content

Instantly share code, notes, and snippets.

@maxgalbu
Created December 22, 2014 16:17
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 maxgalbu/9cd0c0618a38048a46c4 to your computer and use it in GitHub Desktop.
Save maxgalbu/9cd0c0618a38048a46c4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<nav>
<a href="#" class="selected">Projects</a>
</nav>
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$colors: (
red:#d21d0e,
green:#77bb23,
blue:#468ee5,
yellow:#F5A623,
purple:#9E0FBA,
darkgreen:#7B9523
);
@each $color in $colors {
$index: index($colors, $color);
.select2-search-choice:nth-child(#{$index}) {
background-color:$color;
color:white;
}
}
.select2-search-choice:nth-child(1) {
background-color: red #d21d0e;
color: white;
}
.select2-search-choice:nth-child(2) {
background-color: green #77bb23;
color: white;
}
.select2-search-choice:nth-child(3) {
background-color: blue #468ee5;
color: white;
}
.select2-search-choice:nth-child(4) {
background-color: yellow #F5A623;
color: white;
}
.select2-search-choice:nth-child(5) {
background-color: purple #9E0FBA;
color: white;
}
.select2-search-choice:nth-child(6) {
background-color: darkgreen #7B9523;
color: white;
}
<nav>
<a href="#" class="selected">Projects</a>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment