In rails3, I want to have all the views in a specific controller(groups_controller) to have a different body background color. I have a stylesheet groups.css with this rule:
body { background-color:#333}
and I'm including this file in application.css. but the problem is now every controller gets the styles I defined in groups.css. Is there another way to do this? Thank you!