Skip to content

Instantly share code, notes, and snippets.

@MuratOrs
Created September 8, 2018 12:32
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 MuratOrs/b4551d4db64ec85f8caa63f597b0888a to your computer and use it in GitHub Desktop.
Save MuratOrs/b4551d4db64ec85f8caa63f597b0888a to your computer and use it in GitHub Desktop.
Цикл в Sass для перебора цветов
$colors: $blue, $red, $accent
@for $i from 1 through length($colors)
.carousel-services .owl-item:nth-child(#{length($colors)}n+#{$i}),
.carousel-services-aside .owl-item:nth-child(#{length($colors)}n+#{$i})
background-color: nth($colors, $i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment