├── README.md ├── css ├── reset.css └── style.css ├── img ├── cd-arrow.svg ├── cd-logo.svg ├── img-1.jpg ├── img-2.jpg └── img-3.jpg ├── index.html ├── js ├── jquery-2.1.4.js ├── main.js └── modernizr.js ├── partials ├── _layout.scss ├── _mixins.scss └── _variables.scss └── scss └── style.scss /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/README.md -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/css/reset.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/css/style.css -------------------------------------------------------------------------------- /img/cd-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/img/cd-arrow.svg -------------------------------------------------------------------------------- /img/cd-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/img/cd-logo.svg -------------------------------------------------------------------------------- /img/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/img/img-1.jpg -------------------------------------------------------------------------------- /img/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/img/img-2.jpg -------------------------------------------------------------------------------- /img/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/img/img-3.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/index.html -------------------------------------------------------------------------------- /js/jquery-2.1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/js/jquery-2.1.4.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/js/main.js -------------------------------------------------------------------------------- /js/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/js/modernizr.js -------------------------------------------------------------------------------- /partials/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/partials/_layout.scss -------------------------------------------------------------------------------- /partials/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/partials/_mixins.scss -------------------------------------------------------------------------------- /partials/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/partials/_variables.scss -------------------------------------------------------------------------------- /scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyhouse/project-cards-template/HEAD/scss/style.scss --------------------------------------------------------------------------------