├── .editorconfig ├── .flowconfig ├── .github ├── img │ ├── 1-3-1-3-1-3-1-2-1-2.png │ ├── 1-3-auto-100.png │ ├── 100px-1-3-auto.png │ ├── 100px-auto.png │ ├── 300px-auto.png │ ├── center.png │ ├── postcss-ant-logo.png │ ├── ratio-grid-classes.png │ ├── ratio-grid.png │ ├── ratio-with-fixed.png │ ├── simple-example.png │ ├── simple-golden-ratio.png │ └── thirds.png └── todo.md ├── .gitignore ├── README.md ├── lib ├── helpers │ └── generate-grid.js ├── index.js ├── methods │ ├── index.js │ ├── pow.js │ ├── ratio.js │ └── sum.js └── utils │ ├── calc-hell.js │ ├── error-handler.js │ ├── get-size.js │ └── rule-setter.js ├── package.json └── test ├── features ├── common.css ├── gg │ ├── floats │ │ ├── index.html │ │ ├── locked.css │ │ ├── style.css │ │ └── style.posted.css │ └── simple │ │ ├── index.html │ │ ├── locked.css │ │ ├── style.css │ │ └── style.posted.css └── sizes │ ├── autos │ ├── index.html │ ├── locked.css │ ├── style.css │ └── style.posted.css │ ├── fixed-autos │ ├── index.html │ ├── locked.css │ ├── style.css │ └── style.posted.css │ ├── fixed-fractions │ ├── index.html │ ├── locked.css │ ├── style.css │ └── style.posted.css │ ├── fixed │ ├── index.html │ ├── locked.css │ ├── style.css │ └── style.posted.css │ ├── fractions-autos │ ├── index.html │ ├── locked.css │ ├── style.css │ └── style.posted.css │ └── fractions │ ├── index.html │ ├── locked.css │ ├── style.css │ └── style.posted.css └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/img/1-3-1-3-1-3-1-2-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/1-3-1-3-1-3-1-2-1-2.png -------------------------------------------------------------------------------- /.github/img/1-3-auto-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/1-3-auto-100.png -------------------------------------------------------------------------------- /.github/img/100px-1-3-auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/100px-1-3-auto.png -------------------------------------------------------------------------------- /.github/img/100px-auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/100px-auto.png -------------------------------------------------------------------------------- /.github/img/300px-auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/300px-auto.png -------------------------------------------------------------------------------- /.github/img/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/center.png -------------------------------------------------------------------------------- /.github/img/postcss-ant-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/postcss-ant-logo.png -------------------------------------------------------------------------------- /.github/img/ratio-grid-classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/ratio-grid-classes.png -------------------------------------------------------------------------------- /.github/img/ratio-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/ratio-grid.png -------------------------------------------------------------------------------- /.github/img/ratio-with-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/ratio-with-fixed.png -------------------------------------------------------------------------------- /.github/img/simple-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/simple-example.png -------------------------------------------------------------------------------- /.github/img/simple-golden-ratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/simple-golden-ratio.png -------------------------------------------------------------------------------- /.github/img/thirds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/img/thirds.png -------------------------------------------------------------------------------- /.github/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.github/todo.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/README.md -------------------------------------------------------------------------------- /lib/helpers/generate-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/helpers/generate-grid.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/methods/index.js -------------------------------------------------------------------------------- /lib/methods/pow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/methods/pow.js -------------------------------------------------------------------------------- /lib/methods/ratio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/methods/ratio.js -------------------------------------------------------------------------------- /lib/methods/sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/methods/sum.js -------------------------------------------------------------------------------- /lib/utils/calc-hell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/utils/calc-hell.js -------------------------------------------------------------------------------- /lib/utils/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/utils/error-handler.js -------------------------------------------------------------------------------- /lib/utils/get-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/utils/get-size.js -------------------------------------------------------------------------------- /lib/utils/rule-setter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/lib/utils/rule-setter.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/package.json -------------------------------------------------------------------------------- /test/features/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/common.css -------------------------------------------------------------------------------- /test/features/gg/floats/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/gg/floats/index.html -------------------------------------------------------------------------------- /test/features/gg/floats/locked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/gg/floats/locked.css -------------------------------------------------------------------------------- /test/features/gg/floats/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/gg/floats/style.css -------------------------------------------------------------------------------- /test/features/gg/floats/style.posted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/gg/floats/style.posted.css -------------------------------------------------------------------------------- /test/features/gg/simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/gg/simple/index.html -------------------------------------------------------------------------------- /test/features/gg/simple/locked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/gg/simple/locked.css -------------------------------------------------------------------------------- /test/features/gg/simple/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/gg/simple/style.css -------------------------------------------------------------------------------- /test/features/gg/simple/style.posted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/gg/simple/style.posted.css -------------------------------------------------------------------------------- /test/features/sizes/autos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/autos/index.html -------------------------------------------------------------------------------- /test/features/sizes/autos/locked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/autos/locked.css -------------------------------------------------------------------------------- /test/features/sizes/autos/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/autos/style.css -------------------------------------------------------------------------------- /test/features/sizes/autos/style.posted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/autos/style.posted.css -------------------------------------------------------------------------------- /test/features/sizes/fixed-autos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed-autos/index.html -------------------------------------------------------------------------------- /test/features/sizes/fixed-autos/locked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed-autos/locked.css -------------------------------------------------------------------------------- /test/features/sizes/fixed-autos/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed-autos/style.css -------------------------------------------------------------------------------- /test/features/sizes/fixed-autos/style.posted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed-autos/style.posted.css -------------------------------------------------------------------------------- /test/features/sizes/fixed-fractions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed-fractions/index.html -------------------------------------------------------------------------------- /test/features/sizes/fixed-fractions/locked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed-fractions/locked.css -------------------------------------------------------------------------------- /test/features/sizes/fixed-fractions/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed-fractions/style.css -------------------------------------------------------------------------------- /test/features/sizes/fixed-fractions/style.posted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed-fractions/style.posted.css -------------------------------------------------------------------------------- /test/features/sizes/fixed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed/index.html -------------------------------------------------------------------------------- /test/features/sizes/fixed/locked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed/locked.css -------------------------------------------------------------------------------- /test/features/sizes/fixed/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed/style.css -------------------------------------------------------------------------------- /test/features/sizes/fixed/style.posted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fixed/style.posted.css -------------------------------------------------------------------------------- /test/features/sizes/fractions-autos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fractions-autos/index.html -------------------------------------------------------------------------------- /test/features/sizes/fractions-autos/locked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fractions-autos/locked.css -------------------------------------------------------------------------------- /test/features/sizes/fractions-autos/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fractions-autos/style.css -------------------------------------------------------------------------------- /test/features/sizes/fractions-autos/style.posted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fractions-autos/style.posted.css -------------------------------------------------------------------------------- /test/features/sizes/fractions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fractions/index.html -------------------------------------------------------------------------------- /test/features/sizes/fractions/locked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fractions/locked.css -------------------------------------------------------------------------------- /test/features/sizes/fractions/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fractions/style.css -------------------------------------------------------------------------------- /test/features/sizes/fractions/style.posted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/features/sizes/fractions/style.posted.css -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corysimmons/postcss-ant/HEAD/test/index.js --------------------------------------------------------------------------------