├── .gitignore ├── LICENSE ├── README.md ├── design ├── 000layout.png ├── 000layout.svg ├── color-info-bar.svg ├── group-breadcrum.svg ├── groups-feature.png ├── landing-design.svg ├── panels.svg ├── settings-bar.svg ├── tool-bar.svg └── zoom.png ├── docs ├── Makefile ├── barriers │ └── index.rst ├── conf.py ├── goals │ └── index.rst ├── images │ ├── goals.jpg │ ├── inkscape-screen.png │ └── structure.png ├── index.rst ├── main │ └── index.rst ├── make.bat ├── requirements.txt ├── structure │ └── index.rst ├── tools │ └── index.rst └── visual │ └── index.rst ├── landing ├── .gitignore ├── .nvmrc ├── README.md ├── app │ ├── images │ │ ├── 000layout.png │ │ ├── andres.jpg │ │ ├── avatar.jpg │ │ ├── goal.jpg │ │ ├── grid.png │ │ ├── grid.svg │ │ ├── homebg.png │ │ ├── how1.jpg │ │ ├── how2.jpg │ │ ├── how3.jpg │ │ ├── inkscape-screen.png │ │ ├── juan.jpg │ │ ├── logo-piweek.png │ │ ├── quotes.png │ │ └── xavi.jpg │ ├── index.jade │ ├── scripts │ │ └── main.coffee │ ├── styles │ │ ├── dependencies │ │ │ ├── colors.scss │ │ │ ├── forms.scss │ │ │ ├── helpers.scss │ │ │ ├── mediaqueries.scss │ │ │ ├── mixins.scss │ │ │ ├── responsive.scss │ │ │ └── typography.scss │ │ ├── layout │ │ │ ├── grid.scss │ │ │ └── layout.scss │ │ ├── main.scss │ │ ├── modules │ │ │ ├── goal.scss │ │ │ ├── how.scss │ │ │ ├── landing.scss │ │ │ ├── sexy.scss │ │ │ ├── structure.scss │ │ │ ├── today.scss │ │ │ ├── tools.scss │ │ │ ├── visual.scss │ │ │ ├── who.scss │ │ │ └── why.scss │ │ └── shame │ │ │ └── shame.scss │ ├── svg │ │ ├── fap.svg │ │ ├── goal-love.svg │ │ ├── goal-ui.svg │ │ ├── goal-ux.svg │ │ ├── goal.svg │ │ ├── heart-bezier.svg │ │ ├── heart.svg │ │ ├── how.svg │ │ ├── inkscape.svg │ │ ├── kaleidos.svg │ │ ├── pain.svg │ │ ├── structure-icon.svg │ │ ├── structure.svg │ │ ├── structure1.svg │ │ ├── structure2.svg │ │ ├── structure3.svg │ │ ├── tool.svg │ │ ├── tools.svg │ │ └── visual.svg │ └── views │ │ ├── layout │ │ └── main.jade │ │ └── modules │ │ ├── goal.jade │ │ ├── how.jade │ │ ├── landing.jade │ │ ├── sexy.jade │ │ ├── structure.jade │ │ ├── today.jade │ │ ├── tools.jade │ │ ├── visual.jade │ │ ├── who.jade │ │ └── why.jade ├── bower.json ├── csslintrc.json ├── dist │ ├── images │ │ ├── 000layout.png │ │ ├── groups-feature.png │ │ └── zoom.png │ └── svg │ │ └── inkscape-dark.svg ├── gulpfile.coffee ├── htmlhintrc.json ├── package-lock.json ├── package.json └── scsslint.yml ├── mockups ├── interactive-zones-3d.svg ├── interactive-zones.svg └── mobile-first.ep └── reference ├── hue-color-wheel.jpg ├── icons ├── 00tools │ ├── 01select.svg │ ├── 02bezier.svg │ ├── 03zoom.svg │ ├── 04text.svg │ ├── 05rectangle.svg │ ├── 06circle.svg │ ├── 07fillstroke.svg │ ├── 08font.svg │ ├── 09layers.svg │ ├── 10align.svg │ ├── 11code.svg │ ├── 12line.svg │ ├── 13caligraphic.svg │ ├── 14polygons.svg │ ├── 15pickcolor.svg │ ├── 16diagram.svg │ ├── 17import.svg │ ├── 19config.svg │ ├── 22cube.svg │ ├── 23spiral.svg │ ├── 24trace.svg │ ├── 25grid.svg │ ├── 26delete.svg │ ├── 27retouch.svg │ ├── 28bucket.svg │ ├── 29gradient.svg │ ├── 30spray.svg │ ├── 31history.svg │ └── 32measure.svg ├── 01select │ ├── 01select-all.svg │ ├── 02select-all2.svg │ ├── 03select-deselect.svg │ ├── 04rotate-left.svg │ ├── 04rotate-right.svg │ ├── 05hor.svg │ ├── 06ver.svg │ ├── 07position1.svg │ ├── 08position2.svg │ ├── 09position3.svg │ ├── 10position4.svg │ ├── 11affect1.svg │ ├── 12affect2.svg │ ├── 13affect3.svg │ └── 14affect4.svg ├── general │ ├── 10visible.svg │ ├── 11no-visible.svg │ ├── 12help.svg │ ├── 1arrow.svg │ ├── 2plus.svg │ ├── 3close.svg │ ├── 4rest.svg │ ├── 5arrow-up.svg │ ├── 6arrow-down.svg │ ├── 7arrow-down-push.svg │ ├── 7arrow-up-push.svg │ ├── 8lock.svg │ └── 9unlock.svg └── mod02-fill-and-stroke │ ├── 01fill.svg │ ├── 02linear-gradient.svg │ ├── 03radial-gradient.svg │ ├── 04pattern.svg │ ├── 05stroke-style.svg │ ├── 05stroke.svg │ └── 06sample.svg └── layout.svg /.gitignore: -------------------------------------------------------------------------------- 1 | /docs/_build 2 | scss-lint.log 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/README.md -------------------------------------------------------------------------------- /design/000layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/000layout.png -------------------------------------------------------------------------------- /design/000layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/000layout.svg -------------------------------------------------------------------------------- /design/color-info-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/color-info-bar.svg -------------------------------------------------------------------------------- /design/group-breadcrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/group-breadcrum.svg -------------------------------------------------------------------------------- /design/groups-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/groups-feature.png -------------------------------------------------------------------------------- /design/landing-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/landing-design.svg -------------------------------------------------------------------------------- /design/panels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/panels.svg -------------------------------------------------------------------------------- /design/settings-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/settings-bar.svg -------------------------------------------------------------------------------- /design/tool-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/tool-bar.svg -------------------------------------------------------------------------------- /design/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/design/zoom.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/barriers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/barriers/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/goals/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/goals/index.rst -------------------------------------------------------------------------------- /docs/images/goals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/images/goals.jpg -------------------------------------------------------------------------------- /docs/images/inkscape-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/images/inkscape-screen.png -------------------------------------------------------------------------------- /docs/images/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/images/structure.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/main/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/main/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/structure/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/structure/index.rst -------------------------------------------------------------------------------- /docs/tools/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/tools/index.rst -------------------------------------------------------------------------------- /docs/visual/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/docs/visual/index.rst -------------------------------------------------------------------------------- /landing/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | bower_components/ 3 | dist/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /landing/.nvmrc: -------------------------------------------------------------------------------- 1 | 10.9.0 2 | -------------------------------------------------------------------------------- /landing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/README.md -------------------------------------------------------------------------------- /landing/app/images/000layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/000layout.png -------------------------------------------------------------------------------- /landing/app/images/andres.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/andres.jpg -------------------------------------------------------------------------------- /landing/app/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/avatar.jpg -------------------------------------------------------------------------------- /landing/app/images/goal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/goal.jpg -------------------------------------------------------------------------------- /landing/app/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/grid.png -------------------------------------------------------------------------------- /landing/app/images/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/grid.svg -------------------------------------------------------------------------------- /landing/app/images/homebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/homebg.png -------------------------------------------------------------------------------- /landing/app/images/how1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/how1.jpg -------------------------------------------------------------------------------- /landing/app/images/how2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/how2.jpg -------------------------------------------------------------------------------- /landing/app/images/how3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/how3.jpg -------------------------------------------------------------------------------- /landing/app/images/inkscape-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/inkscape-screen.png -------------------------------------------------------------------------------- /landing/app/images/juan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/juan.jpg -------------------------------------------------------------------------------- /landing/app/images/logo-piweek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/logo-piweek.png -------------------------------------------------------------------------------- /landing/app/images/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/quotes.png -------------------------------------------------------------------------------- /landing/app/images/xavi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/images/xavi.jpg -------------------------------------------------------------------------------- /landing/app/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/index.jade -------------------------------------------------------------------------------- /landing/app/scripts/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/scripts/main.coffee -------------------------------------------------------------------------------- /landing/app/styles/dependencies/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/dependencies/colors.scss -------------------------------------------------------------------------------- /landing/app/styles/dependencies/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/dependencies/forms.scss -------------------------------------------------------------------------------- /landing/app/styles/dependencies/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/dependencies/helpers.scss -------------------------------------------------------------------------------- /landing/app/styles/dependencies/mediaqueries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/dependencies/mediaqueries.scss -------------------------------------------------------------------------------- /landing/app/styles/dependencies/mixins.scss: -------------------------------------------------------------------------------- 1 | // Our own mixins 2 | -------------------------------------------------------------------------------- /landing/app/styles/dependencies/responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/dependencies/responsive.scss -------------------------------------------------------------------------------- /landing/app/styles/dependencies/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/dependencies/typography.scss -------------------------------------------------------------------------------- /landing/app/styles/layout/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/layout/grid.scss -------------------------------------------------------------------------------- /landing/app/styles/layout/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/layout/layout.scss -------------------------------------------------------------------------------- /landing/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/main.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/goal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/goal.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/how.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/how.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/landing.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/sexy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/sexy.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/structure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/structure.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/today.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/today.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/tools.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/tools.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/visual.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/visual.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/who.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/who.scss -------------------------------------------------------------------------------- /landing/app/styles/modules/why.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/modules/why.scss -------------------------------------------------------------------------------- /landing/app/styles/shame/shame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/styles/shame/shame.scss -------------------------------------------------------------------------------- /landing/app/svg/fap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/fap.svg -------------------------------------------------------------------------------- /landing/app/svg/goal-love.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/goal-love.svg -------------------------------------------------------------------------------- /landing/app/svg/goal-ui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/goal-ui.svg -------------------------------------------------------------------------------- /landing/app/svg/goal-ux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/goal-ux.svg -------------------------------------------------------------------------------- /landing/app/svg/goal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/goal.svg -------------------------------------------------------------------------------- /landing/app/svg/heart-bezier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/heart-bezier.svg -------------------------------------------------------------------------------- /landing/app/svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/heart.svg -------------------------------------------------------------------------------- /landing/app/svg/how.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/how.svg -------------------------------------------------------------------------------- /landing/app/svg/inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/inkscape.svg -------------------------------------------------------------------------------- /landing/app/svg/kaleidos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/kaleidos.svg -------------------------------------------------------------------------------- /landing/app/svg/pain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/pain.svg -------------------------------------------------------------------------------- /landing/app/svg/structure-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/structure-icon.svg -------------------------------------------------------------------------------- /landing/app/svg/structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/structure.svg -------------------------------------------------------------------------------- /landing/app/svg/structure1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/structure1.svg -------------------------------------------------------------------------------- /landing/app/svg/structure2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/structure2.svg -------------------------------------------------------------------------------- /landing/app/svg/structure3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/structure3.svg -------------------------------------------------------------------------------- /landing/app/svg/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/tool.svg -------------------------------------------------------------------------------- /landing/app/svg/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/tools.svg -------------------------------------------------------------------------------- /landing/app/svg/visual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/svg/visual.svg -------------------------------------------------------------------------------- /landing/app/views/layout/main.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/layout/main.jade -------------------------------------------------------------------------------- /landing/app/views/modules/goal.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/goal.jade -------------------------------------------------------------------------------- /landing/app/views/modules/how.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/how.jade -------------------------------------------------------------------------------- /landing/app/views/modules/landing.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/landing.jade -------------------------------------------------------------------------------- /landing/app/views/modules/sexy.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/sexy.jade -------------------------------------------------------------------------------- /landing/app/views/modules/structure.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/structure.jade -------------------------------------------------------------------------------- /landing/app/views/modules/today.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/today.jade -------------------------------------------------------------------------------- /landing/app/views/modules/tools.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/tools.jade -------------------------------------------------------------------------------- /landing/app/views/modules/visual.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/visual.jade -------------------------------------------------------------------------------- /landing/app/views/modules/who.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/who.jade -------------------------------------------------------------------------------- /landing/app/views/modules/why.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/app/views/modules/why.jade -------------------------------------------------------------------------------- /landing/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/bower.json -------------------------------------------------------------------------------- /landing/csslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/csslintrc.json -------------------------------------------------------------------------------- /landing/dist/images/000layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/dist/images/000layout.png -------------------------------------------------------------------------------- /landing/dist/images/groups-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/dist/images/groups-feature.png -------------------------------------------------------------------------------- /landing/dist/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/dist/images/zoom.png -------------------------------------------------------------------------------- /landing/dist/svg/inkscape-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/dist/svg/inkscape-dark.svg -------------------------------------------------------------------------------- /landing/gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/gulpfile.coffee -------------------------------------------------------------------------------- /landing/htmlhintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/htmlhintrc.json -------------------------------------------------------------------------------- /landing/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/package-lock.json -------------------------------------------------------------------------------- /landing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/package.json -------------------------------------------------------------------------------- /landing/scsslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/landing/scsslint.yml -------------------------------------------------------------------------------- /mockups/interactive-zones-3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/mockups/interactive-zones-3d.svg -------------------------------------------------------------------------------- /mockups/interactive-zones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/mockups/interactive-zones.svg -------------------------------------------------------------------------------- /mockups/mobile-first.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/mockups/mobile-first.ep -------------------------------------------------------------------------------- /reference/hue-color-wheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/hue-color-wheel.jpg -------------------------------------------------------------------------------- /reference/icons/00tools/01select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/01select.svg -------------------------------------------------------------------------------- /reference/icons/00tools/02bezier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/02bezier.svg -------------------------------------------------------------------------------- /reference/icons/00tools/03zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/03zoom.svg -------------------------------------------------------------------------------- /reference/icons/00tools/04text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/04text.svg -------------------------------------------------------------------------------- /reference/icons/00tools/05rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/05rectangle.svg -------------------------------------------------------------------------------- /reference/icons/00tools/06circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/06circle.svg -------------------------------------------------------------------------------- /reference/icons/00tools/07fillstroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/07fillstroke.svg -------------------------------------------------------------------------------- /reference/icons/00tools/08font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/08font.svg -------------------------------------------------------------------------------- /reference/icons/00tools/09layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/09layers.svg -------------------------------------------------------------------------------- /reference/icons/00tools/10align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/10align.svg -------------------------------------------------------------------------------- /reference/icons/00tools/11code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/11code.svg -------------------------------------------------------------------------------- /reference/icons/00tools/12line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/12line.svg -------------------------------------------------------------------------------- /reference/icons/00tools/13caligraphic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/13caligraphic.svg -------------------------------------------------------------------------------- /reference/icons/00tools/14polygons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/14polygons.svg -------------------------------------------------------------------------------- /reference/icons/00tools/15pickcolor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/15pickcolor.svg -------------------------------------------------------------------------------- /reference/icons/00tools/16diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/16diagram.svg -------------------------------------------------------------------------------- /reference/icons/00tools/17import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/17import.svg -------------------------------------------------------------------------------- /reference/icons/00tools/19config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/19config.svg -------------------------------------------------------------------------------- /reference/icons/00tools/22cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/22cube.svg -------------------------------------------------------------------------------- /reference/icons/00tools/23spiral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/23spiral.svg -------------------------------------------------------------------------------- /reference/icons/00tools/24trace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/24trace.svg -------------------------------------------------------------------------------- /reference/icons/00tools/25grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/25grid.svg -------------------------------------------------------------------------------- /reference/icons/00tools/26delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/26delete.svg -------------------------------------------------------------------------------- /reference/icons/00tools/27retouch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/27retouch.svg -------------------------------------------------------------------------------- /reference/icons/00tools/28bucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/28bucket.svg -------------------------------------------------------------------------------- /reference/icons/00tools/29gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/29gradient.svg -------------------------------------------------------------------------------- /reference/icons/00tools/30spray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/30spray.svg -------------------------------------------------------------------------------- /reference/icons/00tools/31history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/31history.svg -------------------------------------------------------------------------------- /reference/icons/00tools/32measure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/00tools/32measure.svg -------------------------------------------------------------------------------- /reference/icons/01select/01select-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/01select-all.svg -------------------------------------------------------------------------------- /reference/icons/01select/02select-all2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/02select-all2.svg -------------------------------------------------------------------------------- /reference/icons/01select/03select-deselect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/03select-deselect.svg -------------------------------------------------------------------------------- /reference/icons/01select/04rotate-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/04rotate-left.svg -------------------------------------------------------------------------------- /reference/icons/01select/04rotate-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/04rotate-right.svg -------------------------------------------------------------------------------- /reference/icons/01select/05hor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/05hor.svg -------------------------------------------------------------------------------- /reference/icons/01select/06ver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/06ver.svg -------------------------------------------------------------------------------- /reference/icons/01select/07position1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/07position1.svg -------------------------------------------------------------------------------- /reference/icons/01select/08position2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/08position2.svg -------------------------------------------------------------------------------- /reference/icons/01select/09position3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/09position3.svg -------------------------------------------------------------------------------- /reference/icons/01select/10position4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/10position4.svg -------------------------------------------------------------------------------- /reference/icons/01select/11affect1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/11affect1.svg -------------------------------------------------------------------------------- /reference/icons/01select/12affect2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/12affect2.svg -------------------------------------------------------------------------------- /reference/icons/01select/13affect3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/13affect3.svg -------------------------------------------------------------------------------- /reference/icons/01select/14affect4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/01select/14affect4.svg -------------------------------------------------------------------------------- /reference/icons/general/10visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/10visible.svg -------------------------------------------------------------------------------- /reference/icons/general/11no-visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/11no-visible.svg -------------------------------------------------------------------------------- /reference/icons/general/12help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/12help.svg -------------------------------------------------------------------------------- /reference/icons/general/1arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/1arrow.svg -------------------------------------------------------------------------------- /reference/icons/general/2plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/2plus.svg -------------------------------------------------------------------------------- /reference/icons/general/3close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/3close.svg -------------------------------------------------------------------------------- /reference/icons/general/4rest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/4rest.svg -------------------------------------------------------------------------------- /reference/icons/general/5arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/5arrow-up.svg -------------------------------------------------------------------------------- /reference/icons/general/6arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/6arrow-down.svg -------------------------------------------------------------------------------- /reference/icons/general/7arrow-down-push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/7arrow-down-push.svg -------------------------------------------------------------------------------- /reference/icons/general/7arrow-up-push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/7arrow-up-push.svg -------------------------------------------------------------------------------- /reference/icons/general/8lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/8lock.svg -------------------------------------------------------------------------------- /reference/icons/general/9unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/general/9unlock.svg -------------------------------------------------------------------------------- /reference/icons/mod02-fill-and-stroke/01fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/mod02-fill-and-stroke/01fill.svg -------------------------------------------------------------------------------- /reference/icons/mod02-fill-and-stroke/02linear-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/mod02-fill-and-stroke/02linear-gradient.svg -------------------------------------------------------------------------------- /reference/icons/mod02-fill-and-stroke/03radial-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/mod02-fill-and-stroke/03radial-gradient.svg -------------------------------------------------------------------------------- /reference/icons/mod02-fill-and-stroke/04pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/mod02-fill-and-stroke/04pattern.svg -------------------------------------------------------------------------------- /reference/icons/mod02-fill-and-stroke/05stroke-style.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/mod02-fill-and-stroke/05stroke-style.svg -------------------------------------------------------------------------------- /reference/icons/mod02-fill-and-stroke/05stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/mod02-fill-and-stroke/05stroke.svg -------------------------------------------------------------------------------- /reference/icons/mod02-fill-and-stroke/06sample.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/icons/mod02-fill-and-stroke/06sample.svg -------------------------------------------------------------------------------- /reference/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIWEEK/rethinkscape/HEAD/reference/layout.svg --------------------------------------------------------------------------------