I'm trying to select all elements, then select elements with the btn class, except within elements with navbar, footer or mobile-menu classes.
I have this code:
*:not(.navbar):not(.footer):not(.mobile-menu) {
.btn {
font-size: 20px;
padding: .8rem 2rem;
}
}
But it's not working.
Could someone explain why to me please?
EDIT: I'm using sass