├── README.md ├── css ├── reset.css └── style.css ├── img ├── bg-pattern.png ├── cd-img-1.jpg ├── cd-img-2.png ├── cd-img-3.png └── pattern-license.txt ├── index.html ├── js ├── jquery-2.1.1.js ├── main.js └── modernizr.js ├── partials ├── _layout.scss └── _variables.scss └── scss └── style.scss /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/README.md -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/css/reset.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/css/style.css -------------------------------------------------------------------------------- /img/bg-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/img/bg-pattern.png -------------------------------------------------------------------------------- /img/cd-img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/img/cd-img-1.jpg -------------------------------------------------------------------------------- /img/cd-img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/img/cd-img-2.png -------------------------------------------------------------------------------- /img/cd-img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/img/cd-img-3.png -------------------------------------------------------------------------------- /img/pattern-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/img/pattern-license.txt -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/index.html -------------------------------------------------------------------------------- /js/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/js/jquery-2.1.1.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/js/main.js -------------------------------------------------------------------------------- /js/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/js/modernizr.js -------------------------------------------------------------------------------- /partials/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/partials/_layout.scss -------------------------------------------------------------------------------- /partials/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/partials/_variables.scss -------------------------------------------------------------------------------- /scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/parallax-hero-image/HEAD/scss/style.scss --------------------------------------------------------------------------------