I made a basic rails app with a simple pages controller with an index function and when I load the page I get:
ActionView::Template::Error (application.css i
You probably have a syntax error in the css you are using.
syntax error
Run this command
$ bundle exec rake assets:precompile RAILS_ENV=development --trace
It will give the exception, fixed that and you are all done.
Thanks