Is it feasible to repeat this pattern an unlimited number of times using Less with the provided CSS selectors?
I've been looking into using loops, however, I haven't come across any examples that achieve a similar result.
.page-section {
background-color: #FFFFFF;
}
.page-section + page-section {
background-color: #F7F7F7;
}
.page-section + page-section + page-section {
background-color: #FFFFFF;
}