Created
December 22, 2021 19:43
-
-
Save rafibomb/6de1c2d145dd16ea69c6178a20ac3598 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ----------------------- | |
// 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