├── .gitignore ├── css └── main.css ├── img ├── call-to-action-background.jpg ├── logo.svg ├── phone-in-hand.jpg ├── phone.png ├── sales-graph.png ├── sales-hand.png ├── sales-responsive.png └── testimonial.png ├── index.html ├── js └── scripts.js ├── prepros-6.config └── sass ├── abstracts ├── _colors.sass └── _type.sass ├── base ├── _base.sass └── _typography.sass ├── components ├── _buttons.sass └── _cta.sass ├── layout ├── _footer.sass ├── _grid.sass ├── _header.sass ├── _hero.sass ├── _home-promo.sass ├── _home-sales-points.sass └── _nav.sass ├── main.sass └── vendor └── _normalize.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/.gitignore -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/css/main.css -------------------------------------------------------------------------------- /img/call-to-action-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/img/call-to-action-background.jpg -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/img/logo.svg -------------------------------------------------------------------------------- /img/phone-in-hand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/img/phone-in-hand.jpg -------------------------------------------------------------------------------- /img/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/img/phone.png -------------------------------------------------------------------------------- /img/sales-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/img/sales-graph.png -------------------------------------------------------------------------------- /img/sales-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/img/sales-hand.png -------------------------------------------------------------------------------- /img/sales-responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/img/sales-responsive.png -------------------------------------------------------------------------------- /img/testimonial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/img/testimonial.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/index.html -------------------------------------------------------------------------------- /js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/js/scripts.js -------------------------------------------------------------------------------- /prepros-6.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/prepros-6.config -------------------------------------------------------------------------------- /sass/abstracts/_colors.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/abstracts/_colors.sass -------------------------------------------------------------------------------- /sass/abstracts/_type.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/abstracts/_type.sass -------------------------------------------------------------------------------- /sass/base/_base.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/base/_base.sass -------------------------------------------------------------------------------- /sass/base/_typography.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/base/_typography.sass -------------------------------------------------------------------------------- /sass/components/_buttons.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/components/_buttons.sass -------------------------------------------------------------------------------- /sass/components/_cta.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/components/_cta.sass -------------------------------------------------------------------------------- /sass/layout/_footer.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/layout/_footer.sass -------------------------------------------------------------------------------- /sass/layout/_grid.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/layout/_grid.sass -------------------------------------------------------------------------------- /sass/layout/_header.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/layout/_header.sass -------------------------------------------------------------------------------- /sass/layout/_hero.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/layout/_hero.sass -------------------------------------------------------------------------------- /sass/layout/_home-promo.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/layout/_home-promo.sass -------------------------------------------------------------------------------- /sass/layout/_home-sales-points.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/layout/_home-sales-points.sass -------------------------------------------------------------------------------- /sass/layout/_nav.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/layout/_nav.sass -------------------------------------------------------------------------------- /sass/main.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/main.sass -------------------------------------------------------------------------------- /sass/vendor/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-powell/Responsive---start-to-finish/HEAD/sass/vendor/_normalize.scss --------------------------------------------------------------------------------