├── .bowerrc ├── .editorconfig ├── .gitignore ├── .npmignore ├── Gemfile ├── Gemfile.lock ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── Rakefile ├── bower.json ├── dist └── _omega-reset.scss ├── package.json └── src ├── index.html └── scss ├── _test.scss ├── demo └── _demo.scss ├── mixins ├── _media-query-helper.scss └── _omega-reset.scss ├── style.scss └── variables ├── _grid-settings.scss └── _variables.scss /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/.bowerrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/Rakefile -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/bower.json -------------------------------------------------------------------------------- /dist/_omega-reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/dist/_omega-reset.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/src/index.html -------------------------------------------------------------------------------- /src/scss/_test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/src/scss/_test.scss -------------------------------------------------------------------------------- /src/scss/demo/_demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/src/scss/demo/_demo.scss -------------------------------------------------------------------------------- /src/scss/mixins/_media-query-helper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/src/scss/mixins/_media-query-helper.scss -------------------------------------------------------------------------------- /src/scss/mixins/_omega-reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/src/scss/mixins/_omega-reset.scss -------------------------------------------------------------------------------- /src/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/src/scss/style.scss -------------------------------------------------------------------------------- /src/scss/variables/_grid-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/src/scss/variables/_grid-settings.scss -------------------------------------------------------------------------------- /src/scss/variables/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfry/omega-reset-for-bourbon-neat/HEAD/src/scss/variables/_variables.scss --------------------------------------------------------------------------------