@ StepUp Следуя твоему совету, я сделал это сейчас.Большое спасибо за вашу помощь
@include media-breakpoint-down(sm) {
.row.col-ordered {
> div.col-sm-12 {
padding: .5rem !important;
&:nth-child(1),
&:nth-child(3),
&:nth-child(5),
&:nth-child(7),
&:nth-child(9),
&:nth-child(11) {
background-color: $gray-light;
}
}
}
}
@include media-breakpoint-between(md,lg) {
.row.col-ordered {
> div.col-sm-12 {
padding: .5rem !important;
&:nth-child(1),
&:nth-child(2),
&:nth-child(5),
&:nth-child(6),
&:nth-child(9),
&:nth-child(10) {
background-color: $gray-light;
}
}
}
}
@include media-breakpoint-up(lg) {
.row.col-ordered {
> div.col-sm-12.col-md-6 {
padding: .5rem !important;
&:nth-child(1),
&:nth-child(2),
&:nth-child(3),
&:nth-child(7),
&:nth-child(8),
&:nth-child(9) {
background-color: $gray-light;
}
&:nth-child(4),
&:nth-child(5),
&:nth-child(6),
&:nth-child(10) {
background-color: white;
}
}
}
}