Skip to content

Instantly share code, notes, and snippets.

View worst-developer's full-sized avatar
🇺🇦
doing magic 🌈

Yaroslav Pidmohylniy worst-developer

🇺🇦
doing magic 🌈
  • PwC
  • Lviv, Ukraine
  • 11:31 (UTC +03:00)
View GitHub Profile
//*****scss*****
$colors: #f74a3a #fcbe26 #8cc687 #4da5f2 #b01395;
$i:0;
.menu-main ul li {
@each $col in red, orange, green, blue, purple {
$i: $i + 1;
&.#{$col} {
background: nth($colors, $i);
}
}