├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── bower.json ├── examples ├── config.rb ├── css │ └── test.css ├── index.html └── sass │ └── test.scss ├── lib └── singularity-extras.rb ├── sache.json ├── singularity-extras.gemspec └── stylesheets ├── _singularity-extras.scss └── singularity-extras ├── _generators.scss ├── _helpers.scss ├── _outputs.scss ├── generators ├── _compound.scss ├── _ratio-spiral.scss ├── _ratio.scss └── _snap.scss ├── helpers ├── _list-sum.scss ├── _repeat.scss └── _reverse.scss └── outputs └── _calc.scss /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/bower.json -------------------------------------------------------------------------------- /examples/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/examples/config.rb -------------------------------------------------------------------------------- /examples/css/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/examples/css/test.css -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/sass/test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/examples/sass/test.scss -------------------------------------------------------------------------------- /lib/singularity-extras.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/lib/singularity-extras.rb -------------------------------------------------------------------------------- /sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/sache.json -------------------------------------------------------------------------------- /singularity-extras.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/singularity-extras.gemspec -------------------------------------------------------------------------------- /stylesheets/_singularity-extras.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/_singularity-extras.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/_generators.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/_generators.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/_helpers.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/_outputs.scss: -------------------------------------------------------------------------------- 1 | @import "outputs/calc"; -------------------------------------------------------------------------------- /stylesheets/singularity-extras/generators/_compound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/generators/_compound.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/generators/_ratio-spiral.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/generators/_ratio-spiral.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/generators/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/generators/_ratio.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/generators/_snap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/generators/_snap.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/helpers/_list-sum.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/helpers/_list-sum.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/helpers/_repeat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/helpers/_repeat.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/helpers/_reverse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/helpers/_reverse.scss -------------------------------------------------------------------------------- /stylesheets/singularity-extras/outputs/_calc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/Singularity-extras/HEAD/stylesheets/singularity-extras/outputs/_calc.scss --------------------------------------------------------------------------------