In rails I have a CSS file in my app/asset/stylesheet/x.css
.
I want to apply it only in a show.html.erb
page in one controller.
That works correctly, but my CSS is also applied to all my app's pages.
How do I apply this CSS only on the show
page? (I want a separate CSS file from my HTML).