├── .gitignore ├── .sass-lint.yml ├── LICENSE ├── README.md ├── assets ├── images │ ├── naming-diagram--color@2x.png │ └── naming-diagram--margin@2x.png └── index.html ├── brunch-config.js ├── circle.yml ├── karma.conf.js ├── modules ├── all.scss ├── color │ ├── README.md │ └── index.scss ├── display │ ├── README.md │ └── index.scss ├── flex │ ├── README.md │ └── index.scss ├── grid │ ├── README.md │ └── index.scss ├── interaction │ ├── README.md │ └── index.scss ├── length │ ├── README.md │ └── index.scss ├── overlay │ ├── README.md │ └── index.scss ├── position │ ├── README.md │ └── index.scss ├── ratio │ ├── README.md │ └── index.scss ├── reset │ ├── README.md │ └── index.scss ├── spacing │ ├── README.md │ └── index.scss ├── style │ ├── README.md │ └── index.scss ├── table │ ├── README.md │ └── index.scss └── typography │ ├── README.md │ └── index.scss ├── package.json ├── test ├── color.spec.js ├── decent.js ├── display.spec.js ├── flexbox.spec.js ├── float.spec.js ├── grid.spec.js ├── index.js ├── length.spec.js ├── position.spec.js └── util │ └── add-element.js ├── util ├── _defaults.scss ├── _interactions.example.scss ├── _mixins.scss └── index.scss └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | css/ 4 | npm-debug.log 5 | static 6 | public 7 | dist 8 | -------------------------------------------------------------------------------- /.sass-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/.sass-lint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/naming-diagram--color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/assets/images/naming-diagram--color@2x.png -------------------------------------------------------------------------------- /assets/images/naming-diagram--margin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/assets/images/naming-diagram--margin@2x.png -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/assets/index.html -------------------------------------------------------------------------------- /brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/brunch-config.js -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/circle.yml -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/karma.conf.js -------------------------------------------------------------------------------- /modules/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/all.scss -------------------------------------------------------------------------------- /modules/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/color/README.md -------------------------------------------------------------------------------- /modules/color/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/color/index.scss -------------------------------------------------------------------------------- /modules/display/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/display/README.md -------------------------------------------------------------------------------- /modules/display/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/display/index.scss -------------------------------------------------------------------------------- /modules/flex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/flex/README.md -------------------------------------------------------------------------------- /modules/flex/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/flex/index.scss -------------------------------------------------------------------------------- /modules/grid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/grid/README.md -------------------------------------------------------------------------------- /modules/grid/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/grid/index.scss -------------------------------------------------------------------------------- /modules/interaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/interaction/README.md -------------------------------------------------------------------------------- /modules/interaction/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/interaction/index.scss -------------------------------------------------------------------------------- /modules/length/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/length/README.md -------------------------------------------------------------------------------- /modules/length/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/length/index.scss -------------------------------------------------------------------------------- /modules/overlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/overlay/README.md -------------------------------------------------------------------------------- /modules/overlay/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/overlay/index.scss -------------------------------------------------------------------------------- /modules/position/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/position/README.md -------------------------------------------------------------------------------- /modules/position/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/position/index.scss -------------------------------------------------------------------------------- /modules/ratio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/ratio/README.md -------------------------------------------------------------------------------- /modules/ratio/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/ratio/index.scss -------------------------------------------------------------------------------- /modules/reset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/reset/README.md -------------------------------------------------------------------------------- /modules/reset/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/reset/index.scss -------------------------------------------------------------------------------- /modules/spacing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/spacing/README.md -------------------------------------------------------------------------------- /modules/spacing/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/spacing/index.scss -------------------------------------------------------------------------------- /modules/style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/style/README.md -------------------------------------------------------------------------------- /modules/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/style/index.scss -------------------------------------------------------------------------------- /modules/table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/table/README.md -------------------------------------------------------------------------------- /modules/table/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/table/index.scss -------------------------------------------------------------------------------- /modules/typography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/typography/README.md -------------------------------------------------------------------------------- /modules/typography/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/modules/typography/index.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/package.json -------------------------------------------------------------------------------- /test/color.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/color.spec.js -------------------------------------------------------------------------------- /test/decent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/decent.js -------------------------------------------------------------------------------- /test/display.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/display.spec.js -------------------------------------------------------------------------------- /test/flexbox.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/flexbox.spec.js -------------------------------------------------------------------------------- /test/float.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/float.spec.js -------------------------------------------------------------------------------- /test/grid.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/grid.spec.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/index.js -------------------------------------------------------------------------------- /test/length.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/length.spec.js -------------------------------------------------------------------------------- /test/position.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/position.spec.js -------------------------------------------------------------------------------- /test/util/add-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/test/util/add-element.js -------------------------------------------------------------------------------- /util/_defaults.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/util/_defaults.scss -------------------------------------------------------------------------------- /util/_interactions.example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/util/_interactions.example.scss -------------------------------------------------------------------------------- /util/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/util/_mixins.scss -------------------------------------------------------------------------------- /util/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/util/index.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decent-css/decent/HEAD/yarn.lock --------------------------------------------------------------------------------