Chapter 5: Layout Flashcards
1
Q
Bootstrap Framework
A
Twitter CSS framework?
2
Q
.scss
A
Sassy CSS
- app/assets/stylesheets/custom.css.scss
- @import “bootstrap”;
3
Q
Asset Pipeline
A
- All the CSS gets rolled into one CSS file “application.css”
- All the javascripts into javascripts.js
- All files “minified” to reduce size
4
Q
SASS
A
Syntactically Awesome Style Sheets
- Strict superset of CSS (valid CSS is also valid (SASS)
- Support nesting
- Adds variables
- $lightGray: #999;
5
Q
A