├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── README.md ├── dev ├── html │ └── index.html ├── img │ └── .gitignore ├── scripts │ └── app.js └── styles │ └── scss │ ├── 01-fonts │ └── _index.scss │ ├── 02-utilities │ └── _index.scss │ ├── 03-base │ ├── _body.scss │ ├── _index.scss │ └── _reset.scss │ ├── 04-layout │ └── _index.scss │ ├── 05-modules │ └── _index.scss │ ├── 06-states │ └── _index.scss │ ├── 07-_shame.scss │ └── main.scss ├── gulpfile.js └── package.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/README.md -------------------------------------------------------------------------------- /dev/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/html/index.html -------------------------------------------------------------------------------- /dev/img/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/scripts/app.js -------------------------------------------------------------------------------- /dev/styles/scss/01-fonts/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/01-fonts/_index.scss -------------------------------------------------------------------------------- /dev/styles/scss/02-utilities/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/02-utilities/_index.scss -------------------------------------------------------------------------------- /dev/styles/scss/03-base/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/03-base/_body.scss -------------------------------------------------------------------------------- /dev/styles/scss/03-base/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/03-base/_index.scss -------------------------------------------------------------------------------- /dev/styles/scss/03-base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/03-base/_reset.scss -------------------------------------------------------------------------------- /dev/styles/scss/04-layout/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/04-layout/_index.scss -------------------------------------------------------------------------------- /dev/styles/scss/05-modules/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/05-modules/_index.scss -------------------------------------------------------------------------------- /dev/styles/scss/06-states/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/06-states/_index.scss -------------------------------------------------------------------------------- /dev/styles/scss/07-_shame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/07-_shame.scss -------------------------------------------------------------------------------- /dev/styles/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/dev/styles/scss/main.scss -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-warrior/gulp-template-for-html-css-sass-js/HEAD/package.json --------------------------------------------------------------------------------