I want to apply CSS to all pages except sidebars. Let me show you an example
.page #buddypress ul.group li
Try this code
div:not(.sidebar) ul.group li { border: 1px solid red; } // Here i have used div, but you can use whatever tag you have used for sidebar
1 2 3 1 2 3