├── .bowerrc ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── bower.json ├── config.rb ├── data └── library.yml ├── gulpfile.js ├── lib ├── family.rb ├── foundry-core │ ├── core-001-a.svg │ ├── core-002-a.svg │ ├── core-002-b.svg │ ├── core-003-a.svg │ ├── core-003-b.svg │ ├── core-004-a.svg │ ├── core-005-a.svg │ ├── core-005-b.svg │ ├── core-006-a.svg │ ├── core-006-b.svg │ ├── core-007-a.svg │ ├── core-007-b.svg │ ├── core-008-a.svg │ ├── core-008-b.svg │ ├── core-009-a.svg │ ├── core-010-a.svg │ ├── core-011-a.svg │ ├── core-011-b.svg │ ├── core-012-a.svg │ ├── core-013-a.svg │ ├── core-014-a.svg │ ├── core-015-a.svg │ ├── core-016-a.svg │ ├── core-017-a.svg │ └── core-018-a.svg ├── foundry-fellowly │ ├── fellowly-001.svg │ ├── fellowly-004.svg │ ├── fellowly-005.svg │ ├── fellowly-009.svg │ ├── fellowly-011.svg │ ├── fellowly-012.svg │ ├── fellowly-014.svg │ ├── fellowly-015.svg │ ├── fellowly-016.svg │ ├── fellowly-017.svg │ ├── fellowly-019.svg │ ├── fellowly-022.svg │ ├── fellowly-024.svg │ ├── fellowly-026.svg │ ├── fellowly-028.svg │ ├── fellowly-031.svg │ ├── fellowly-036.svg │ ├── fellowly-039.svg │ ├── fellowly-040.svg │ ├── fellowly-041.svg │ ├── fellowly-042.svg │ ├── fellowly-044.svg │ ├── fellowly-050.svg │ ├── fellowly-053.svg │ ├── fellowly-054.svg │ ├── fellowly-055.svg │ ├── fellowly-056.svg │ ├── fellowly-058.svg │ ├── fellowly-060.svg │ ├── fellowly-062.svg │ ├── fellowly-065.svg │ ├── fellowly-067.svg │ ├── fellowly-068.svg │ ├── fellowly-071.svg │ ├── fellowly-073.svg │ ├── fellowly-075.svg │ ├── fellowly-079.svg │ ├── fellowly-081.svg │ ├── fellowly-086.svg │ ├── fellowly-088.svg │ ├── fellowly-091.svg │ ├── fellowly-092.svg │ └── fellowly-096.svg ├── foundry-progress │ ├── progress-001.svg │ ├── progress-002.svg │ ├── progress-003.svg │ ├── progress-004.svg │ ├── progress-005.svg │ ├── progress-006.svg │ ├── progress-007.svg │ └── progress-008.svg └── gallery.rb ├── package.json └── source ├── assets ├── images │ ├── core-016-a.svg │ ├── github.svg │ └── icon.png ├── javascripts │ └── all.coffee └── stylesheets │ ├── app.scss │ ├── base │ ├── _base.scss │ ├── _buttons.scss │ ├── _forms.scss │ ├── _grids.scss │ ├── _lists.scss │ ├── _tables.scss │ ├── _typography.scss │ ├── _variables.scss │ └── extends │ │ ├── _button.scss │ │ ├── _clearfix.scss │ │ ├── _errors.scss │ │ ├── _flashes.scss │ │ └── _hide-text.scss │ ├── pages │ └── _index.scss │ └── patterns │ ├── _families-list.scss │ ├── _footer.scss │ └── _signup.scss ├── favicon.ico ├── index.haml ├── layouts └── layout.haml └── partials ├── _footer.haml ├── _navigation.haml └── _ralph.erb /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/.bowerrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.5 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/Rakefile -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/bower.json -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/config.rb -------------------------------------------------------------------------------- /data/library.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/data/library.yml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/family.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/family.rb -------------------------------------------------------------------------------- /lib/foundry-core/core-001-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-001-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-002-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-002-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-002-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-002-b.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-003-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-003-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-003-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-003-b.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-004-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-004-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-005-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-005-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-005-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-005-b.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-006-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-006-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-006-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-006-b.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-007-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-007-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-007-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-007-b.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-008-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-008-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-008-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-008-b.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-009-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-009-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-010-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-010-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-011-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-011-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-011-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-011-b.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-012-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-012-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-013-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-013-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-014-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-014-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-015-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-015-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-016-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-016-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-017-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-017-a.svg -------------------------------------------------------------------------------- /lib/foundry-core/core-018-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-core/core-018-a.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-001.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-001.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-004.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-004.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-005.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-005.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-009.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-009.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-011.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-011.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-012.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-012.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-014.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-014.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-015.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-015.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-016.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-016.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-017.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-017.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-019.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-019.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-022.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-022.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-024.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-024.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-026.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-026.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-028.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-028.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-031.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-031.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-036.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-036.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-039.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-039.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-040.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-040.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-041.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-041.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-042.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-042.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-044.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-044.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-050.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-050.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-053.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-053.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-054.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-054.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-055.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-055.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-056.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-056.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-058.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-058.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-060.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-060.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-062.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-062.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-065.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-065.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-067.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-067.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-068.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-068.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-071.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-071.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-073.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-073.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-075.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-075.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-079.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-079.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-081.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-081.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-086.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-086.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-088.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-088.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-091.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-091.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-092.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-092.svg -------------------------------------------------------------------------------- /lib/foundry-fellowly/fellowly-096.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-fellowly/fellowly-096.svg -------------------------------------------------------------------------------- /lib/foundry-progress/progress-001.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-progress/progress-001.svg -------------------------------------------------------------------------------- /lib/foundry-progress/progress-002.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-progress/progress-002.svg -------------------------------------------------------------------------------- /lib/foundry-progress/progress-003.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-progress/progress-003.svg -------------------------------------------------------------------------------- /lib/foundry-progress/progress-004.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-progress/progress-004.svg -------------------------------------------------------------------------------- /lib/foundry-progress/progress-005.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-progress/progress-005.svg -------------------------------------------------------------------------------- /lib/foundry-progress/progress-006.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-progress/progress-006.svg -------------------------------------------------------------------------------- /lib/foundry-progress/progress-007.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-progress/progress-007.svg -------------------------------------------------------------------------------- /lib/foundry-progress/progress-008.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/foundry-progress/progress-008.svg -------------------------------------------------------------------------------- /lib/gallery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/lib/gallery.rb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/package.json -------------------------------------------------------------------------------- /source/assets/images/core-016-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/images/core-016-a.svg -------------------------------------------------------------------------------- /source/assets/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/images/github.svg -------------------------------------------------------------------------------- /source/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/images/icon.png -------------------------------------------------------------------------------- /source/assets/javascripts/all.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/javascripts/all.coffee -------------------------------------------------------------------------------- /source/assets/stylesheets/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/app.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/_base.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/_buttons.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/_forms.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_grids.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/_grids.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/_lists.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/_tables.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/_typography.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/_variables.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/extends/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/extends/_button.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/extends/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/extends/_clearfix.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/extends/_errors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/extends/_errors.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/extends/_flashes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/extends/_flashes.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/base/extends/_hide-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/base/extends/_hide-text.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/pages/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/pages/_index.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/patterns/_families-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/patterns/_families-list.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/patterns/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/patterns/_footer.scss -------------------------------------------------------------------------------- /source/assets/stylesheets/patterns/_signup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/assets/stylesheets/patterns/_signup.scss -------------------------------------------------------------------------------- /source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/favicon.ico -------------------------------------------------------------------------------- /source/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/index.haml -------------------------------------------------------------------------------- /source/layouts/layout.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/layouts/layout.haml -------------------------------------------------------------------------------- /source/partials/_footer.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/partials/_footer.haml -------------------------------------------------------------------------------- /source/partials/_navigation.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/partials/_navigation.haml -------------------------------------------------------------------------------- /source/partials/_ralph.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/foundry/HEAD/source/partials/_ralph.erb --------------------------------------------------------------------------------