Hey, we're dealing with multiple pages that require CSS styling.
.cms-index-noroute .col-main .std {font-weight: bold}
.cms-index-list .col-main .std {font-weight: bold}
.cms-index-view .col-main .std {font-weight: bold}
We'd prefer to simplify the CSS like this:
.col-main .std {font-weight: bold}
However, there's a problem as it impacts the entire page when using the selector:
.cms-index-index
Question: Is there a way in CSS to apply
.col-main .std {font-weight: bold}
to all pages except for those containing .cms-index-index
?