├── test ├── images │ ├── ok.png │ ├── date.png │ ├── gift.png │ ├── help.png │ ├── lock.png │ ├── love.png │ ├── mail.png │ ├── pin.png │ ├── tool.png │ ├── zoom.png │ ├── camera.png │ ├── cloud1.png │ ├── cloud2.png │ ├── cloud3.png │ ├── cloud4.png │ ├── config.png │ ├── file1.png │ ├── file2.png │ ├── file3.png │ ├── file4.png │ ├── gamepad.png │ ├── garbage.png │ ├── letters.png │ ├── monitor.png │ ├── notepad.png │ ├── phone.png │ ├── picture.png │ ├── sound.png │ ├── unlock.png │ ├── wallet.png │ ├── openmail.png │ └── suitcase.png ├── unit │ └── stitches.js ├── .jshintrc └── index.html ├── .gitignore ├── src ├── img │ ├── stripes80.gif │ ├── stripes90.gif │ ├── test │ │ ├── github.png │ │ ├── gmail.png │ │ ├── tumblr.png │ │ ├── linkedin.png │ │ ├── twitter.png │ │ └── stackoverflow.png │ └── checkerboard10.png ├── templates │ ├── sprite.tpl │ ├── less-markup.tpl │ ├── css-markup.tpl │ ├── css.tpl │ ├── less.tpl │ ├── downloads.tpl │ └── stitches.tpl ├── css │ ├── stitches.css │ ├── toolbar.css │ ├── sprite.css │ ├── base.css │ └── palette.css ├── js │ ├── wrap │ │ ├── jquery.js │ │ └── modernizr.js │ ├── util │ │ ├── array.js │ │ ├── templates.js │ │ └── util.js │ ├── stitches.js │ ├── stylesheet │ │ ├── css.js │ │ ├── less.js │ │ └── base.js │ ├── manager │ │ ├── stylesheet.js │ │ ├── file.js │ │ └── layout.js │ ├── layout │ │ ├── base.js │ │ ├── vertical.js │ │ ├── horizontal.js │ │ └── compact.js │ └── module │ │ ├── drop-box.js │ │ ├── palette.js │ │ ├── toolbar.js │ │ ├── sprite.js │ │ └── canvas.js ├── index.html └── tpl.js ├── libs ├── bootstrap │ ├── img │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png │ ├── css │ │ └── bootstrap-responsive.min.css │ └── js │ │ └── bootstrap.min.js ├── qunit │ └── qunit.css ├── store │ └── store.js └── modernizr │ └── modernizr-2.0.6.min.js ├── tasks ├── rebase.js └── git.js ├── .jshintrc ├── LICENSE ├── package.json ├── CONTRIBUTING.md ├── README.md ├── templates └── README.md └── Gruntfile.js /test/images/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/ok.png -------------------------------------------------------------------------------- /test/images/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/date.png -------------------------------------------------------------------------------- /test/images/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/gift.png -------------------------------------------------------------------------------- /test/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/help.png -------------------------------------------------------------------------------- /test/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/lock.png -------------------------------------------------------------------------------- /test/images/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/love.png -------------------------------------------------------------------------------- /test/images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/mail.png -------------------------------------------------------------------------------- /test/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/pin.png -------------------------------------------------------------------------------- /test/images/tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/tool.png -------------------------------------------------------------------------------- /test/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/zoom.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | amd/ 2 | dist/ 3 | doc/ 4 | node_modules/ 5 | stitches/ 6 | !build/stitches/ 7 | tmp/ -------------------------------------------------------------------------------- /src/img/stripes80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/src/img/stripes80.gif -------------------------------------------------------------------------------- /src/img/stripes90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/src/img/stripes90.gif -------------------------------------------------------------------------------- /src/img/test/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/src/img/test/github.png -------------------------------------------------------------------------------- /src/img/test/gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/src/img/test/gmail.png -------------------------------------------------------------------------------- /src/img/test/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/src/img/test/tumblr.png -------------------------------------------------------------------------------- /test/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/camera.png -------------------------------------------------------------------------------- /test/images/cloud1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/cloud1.png -------------------------------------------------------------------------------- /test/images/cloud2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/cloud2.png -------------------------------------------------------------------------------- /test/images/cloud3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/cloud3.png -------------------------------------------------------------------------------- /test/images/cloud4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/cloud4.png -------------------------------------------------------------------------------- /test/images/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/config.png -------------------------------------------------------------------------------- /test/images/file1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/file1.png -------------------------------------------------------------------------------- /test/images/file2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/file2.png -------------------------------------------------------------------------------- /test/images/file3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/file3.png -------------------------------------------------------------------------------- /test/images/file4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/file4.png -------------------------------------------------------------------------------- /test/images/gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/gamepad.png -------------------------------------------------------------------------------- /test/images/garbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/garbage.png -------------------------------------------------------------------------------- /test/images/letters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/letters.png -------------------------------------------------------------------------------- /test/images/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/monitor.png -------------------------------------------------------------------------------- /test/images/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/notepad.png -------------------------------------------------------------------------------- /test/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/phone.png -------------------------------------------------------------------------------- /test/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/picture.png -------------------------------------------------------------------------------- /test/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/sound.png -------------------------------------------------------------------------------- /test/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/unlock.png -------------------------------------------------------------------------------- /test/images/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/wallet.png -------------------------------------------------------------------------------- /src/img/test/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/src/img/test/linkedin.png -------------------------------------------------------------------------------- /src/img/test/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/src/img/test/twitter.png -------------------------------------------------------------------------------- /test/images/openmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/openmail.png -------------------------------------------------------------------------------- /test/images/suitcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/test/images/suitcase.png -------------------------------------------------------------------------------- /src/img/checkerboard10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/src/img/checkerboard10.png -------------------------------------------------------------------------------- /src/img/test/stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/src/img/test/stackoverflow.png -------------------------------------------------------------------------------- /libs/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draeton/stitches/HEAD/libs/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /src/templates/sprite.tpl: -------------------------------------------------------------------------------- 1 |
41 |
42 |
43 |
44 |
45 |
46 |
29 |
30 |
31 |
32 |
33 |
34 |
29 |
30 |
31 |
32 |
33 |
34 |