├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── component.json ├── lib ├── stitch.rb └── stitch │ └── version.rb ├── stitch.gemspec └── stylesheets ├── _stitch.scss └── stitch ├── _patterns.scss ├── _reset.scss ├── _utilities.scss └── patterns ├── _accessibility.scss ├── _animation.scss ├── _color.scss ├── _forms.scss ├── _images.scss ├── _layout.scss ├── _legacy.scss ├── _mobile.scss ├── _print.scss ├── _responsive.scss ├── _text.scss ├── _vendor-prefixes.scss ├── accessibility └── _hide-content.scss ├── animation ├── _hardware-acceleration.scss ├── _keyframes.scss └── _timing-functions.scss ├── color └── _rgba.scss ├── forms └── _search-fields.scss ├── images ├── _image-rendering.scss ├── _image-replace.scss └── _inline-icon.scss ├── layout ├── _absolute.scss ├── _center.scss ├── _clear-floats.scss ├── _columns.scss ├── _float-children.scss ├── _force-scrollbars.scss ├── _media.scss ├── _move.scss ├── _pseudo-elements.scss ├── _relative.scss ├── _simple-gradient.scss └── _spacing.scss ├── legacy ├── _hacks.scss ├── _has-layout.scss └── _inline-block.scss ├── mobile └── _fixed-text.scss ├── print ├── _append-content.scss └── _text.scss ├── responsive └── _media.scss └── text ├── _font-stacks.scss ├── _hyphens.scss ├── _justify.scss ├── _rem.scss ├── _selection.scss └── _text-rendering.scss /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *.gem 3 | *.sass-cache/* 4 | pkg/* -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/component.json -------------------------------------------------------------------------------- /lib/stitch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/lib/stitch.rb -------------------------------------------------------------------------------- /lib/stitch/version.rb: -------------------------------------------------------------------------------- 1 | module Stitch 2 | VERSION = "0.1.7.beta.3" 3 | end -------------------------------------------------------------------------------- /stitch.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stitch.gemspec -------------------------------------------------------------------------------- /stylesheets/_stitch.scss: -------------------------------------------------------------------------------- 1 | @import 'stitch/patterns'; -------------------------------------------------------------------------------- /stylesheets/stitch/_patterns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/_patterns.scss -------------------------------------------------------------------------------- /stylesheets/stitch/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/_reset.scss -------------------------------------------------------------------------------- /stylesheets/stitch/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/_utilities.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_accessibility.scss: -------------------------------------------------------------------------------- 1 | @import 'accessibility/hide-content'; -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/_animation.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_color.scss: -------------------------------------------------------------------------------- 1 | @import 'color/rgba'; -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_forms.scss: -------------------------------------------------------------------------------- 1 | @import 'forms/search-fields'; -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/_images.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/_layout.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_legacy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/_legacy.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_mobile.scss: -------------------------------------------------------------------------------- 1 | @import 'mobile/fixed-text'; -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/_print.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_responsive.scss: -------------------------------------------------------------------------------- 1 | @import 'responsive/media'; -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/_text.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/_vendor-prefixes.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/accessibility/_hide-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/accessibility/_hide-content.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/animation/_hardware-acceleration.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/animation/_hardware-acceleration.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/animation/_keyframes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/animation/_keyframes.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/animation/_timing-functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/animation/_timing-functions.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/color/_rgba.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/color/_rgba.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/forms/_search-fields.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/forms/_search-fields.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/images/_image-rendering.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/images/_image-rendering.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/images/_image-replace.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/images/_image-replace.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/images/_inline-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/images/_inline-icon.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_absolute.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_absolute.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_center.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_center.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_clear-floats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_clear-floats.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_columns.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_float-children.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_float-children.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_force-scrollbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_force-scrollbars.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_media.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_move.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_move.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_pseudo-elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_pseudo-elements.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_relative.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_relative.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_simple-gradient.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_simple-gradient.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/layout/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/layout/_spacing.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/legacy/_hacks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/legacy/_hacks.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/legacy/_has-layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/legacy/_has-layout.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/legacy/_inline-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/legacy/_inline-block.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/mobile/_fixed-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/mobile/_fixed-text.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/print/_append-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/print/_append-content.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/print/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/print/_text.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/responsive/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/responsive/_media.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/text/_font-stacks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/text/_font-stacks.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/text/_hyphens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/text/_hyphens.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/text/_justify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/text/_justify.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/text/_rem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/text/_rem.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/text/_selection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/text/_selection.scss -------------------------------------------------------------------------------- /stylesheets/stitch/patterns/text/_text-rendering.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyshort/stitch-css/HEAD/stylesheets/stitch/patterns/text/_text-rendering.scss --------------------------------------------------------------------------------