├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── esds-hostile-css.css ├── esds-hostile-css.scss ├── esds-hostile-mixins.scss ├── package.json └── test ├── .gitignore ├── .npmignore ├── backstop.js ├── backstop_data └── bitmaps_reference │ ├── esds-hostile-css-test__0_document_0_.png │ └── esds-hostile-css-test_scoped_0_document_0_.png ├── docs ├── index.njk └── scoped.njk ├── gulpfile.js ├── package-lock.json ├── package.json └── styles ├── esds-hostile-css.scss └── test-scoped-hostile-wrapper.scss /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/README.md -------------------------------------------------------------------------------- /esds-hostile-css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/esds-hostile-css.css -------------------------------------------------------------------------------- /esds-hostile-css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/esds-hostile-css.scss -------------------------------------------------------------------------------- /esds-hostile-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/esds-hostile-mixins.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/.npmignore -------------------------------------------------------------------------------- /test/backstop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/backstop.js -------------------------------------------------------------------------------- /test/backstop_data/bitmaps_reference/esds-hostile-css-test__0_document_0_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/backstop_data/bitmaps_reference/esds-hostile-css-test__0_document_0_.png -------------------------------------------------------------------------------- /test/backstop_data/bitmaps_reference/esds-hostile-css-test_scoped_0_document_0_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/backstop_data/bitmaps_reference/esds-hostile-css-test_scoped_0_document_0_.png -------------------------------------------------------------------------------- /test/docs/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/docs/index.njk -------------------------------------------------------------------------------- /test/docs/scoped.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/docs/scoped.njk -------------------------------------------------------------------------------- /test/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/gulpfile.js -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/package.json -------------------------------------------------------------------------------- /test/styles/esds-hostile-css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/styles/esds-hostile-css.scss -------------------------------------------------------------------------------- /test/styles/test-scoped-hostile-wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectedEdges/hostile-css/HEAD/test/styles/test-scoped-hostile-wrapper.scss --------------------------------------------------------------------------------