I use bootstrap-sass
gem in my Rails 4 projects. Now, I want to customize my application appearance. I have already looked at its Github page, other threads on the Stack Overflow and many other sites but could not find as answer.
So I have the following questions:
How does
bootstrap-sass
gem work? I understand it installs something on my machine, but what and at what location?What does
@import "bootstrap";
exactly do? I know it imports CSS styles, but from where? From a local folder or from Internet?Suppose I prepared my own bootstrap theme (I changed sass variables) and I want the application to use my theme instead of default styles. What should I do?