Here's my css:
.single-post .container {
width: 60%;
}
not(.single-post) .container{
min-width:92%;
}
What I am trying to achieve is: I want the container width to be 60% on single post pages and 92% on every other page. So, I am trying to exclude .single-post class from 2nd line of code by using not(.single-post) but it's not working.
However, First line of code is working fine.