Skip to content

Instantly share code, notes, and snippets.

@rafibomb
Created December 22, 2021 19:43
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 rafibomb/6de1c2d145dd16ea69c6178a20ac3598 to your computer and use it in GitHub Desktop.
Save rafibomb/6de1c2d145dd16ea69c6178a20ac3598 to your computer and use it in GitHub Desktop.
// -----------------------
// Modal Content | Colornav Styles
// -----------------------
$countries: australia, belgium, brazil, canada, china, denmark, france, germany, great-britain, greece, italy, jamaica, japan, mexico, netherlands, new-zealand, russia, south-africa, south-korea, spain, sweden, united-states;
.international-band-gallery {
@each $country in $countries {
.colornav-swatch-#{$country} {
@include picture(overview_international_countries_int_#{$country}_select);
}
}
}
// -----------------------
// Modal Content | Gallery Styles
// -----------------------
.international-band-gallery {
@each $country in $countries {
.gallery-item-#{$country} {
.gallery-front-img {
@include picture(overview_international_countries_int_#{$country}_front);
}
.gallery-detail-img {
@include picture(overview_international_countries_int_#{$country}_detail);
}
.gallery-band-img {
@include picture(overview_international_countries_int_#{$country}_band);
}
.gallery-band-download-img {
@include picture(overview_international_countries_int_#{$country}_watch_face);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment