├── .gitignore ├── AUTHORS.textile ├── CHANGELOG ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.textile ├── Rakefile ├── TUTORIAL.textile ├── blueprint ├── ie.css ├── plugins │ ├── buttons │ │ ├── icons │ │ │ ├── cross.png │ │ │ ├── key.png │ │ │ └── tick.png │ │ ├── readme.txt │ │ └── screen.css │ ├── fancy-type │ │ ├── readme.txt │ │ └── screen.css │ ├── link-icons │ │ ├── icons │ │ │ ├── doc.png │ │ │ ├── email.png │ │ │ ├── external.png │ │ │ ├── feed.png │ │ │ ├── im.png │ │ │ ├── lock.png │ │ │ ├── pdf.png │ │ │ ├── visited.png │ │ │ └── xls.png │ │ ├── readme.txt │ │ └── screen.css │ └── rtl │ │ ├── readme.txt │ │ └── screen.css ├── print.css ├── screen.css └── src │ ├── forms.css │ ├── grid.css │ ├── grid.png │ ├── ie.css │ ├── print.css │ ├── reset.css │ └── typography.css ├── debug ├── README.textile ├── debug.css └── debug.html ├── features ├── generate_stylesheets.feature ├── step_definitions │ └── blueprint_steps.rb └── support │ ├── blueprint_app.rb │ ├── blueprint_helpers.rb │ ├── document_element.rb │ ├── element_helpers.rb │ ├── env.rb │ └── jquery.js ├── lib ├── blueprint │ ├── blueprint.rb │ ├── compressor.rb │ ├── core_ext.rb │ ├── css_parser.rb │ ├── custom_layout.rb │ ├── grid.css.erb │ ├── grid_builder.rb │ ├── namespace.rb │ ├── semantic_class_names.rb │ ├── validate │ │ ├── COPYRIGHT.html │ │ ├── JIGSAW_COPYRIGHT │ │ ├── README.html │ │ ├── XERCES_COPYING.txt │ │ ├── css-validator-javadoc.jar │ │ ├── css-validator.jar │ │ ├── jigsaw.jar │ │ └── xerces.jar │ └── validator.rb ├── compress.rb ├── settings.example.yml └── validate.rb ├── templates └── psd │ └── fixed-width.psd └── tests ├── index.html └── parts ├── elements.html ├── forms.html ├── grid.html ├── plugins └── link-icons.html ├── sample.html ├── test-small.jpg ├── test.jpg └── valid.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.svn 3 | *.DS_Store 4 | .bundle 5 | tmp/* 6 | lib/settings.yml 7 | capybara-* 8 | -------------------------------------------------------------------------------- /AUTHORS.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/AUTHORS.textile -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/LICENSE -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/README.textile -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/Rakefile -------------------------------------------------------------------------------- /TUTORIAL.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/TUTORIAL.textile -------------------------------------------------------------------------------- /blueprint/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/ie.css -------------------------------------------------------------------------------- /blueprint/plugins/buttons/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/buttons/icons/cross.png -------------------------------------------------------------------------------- /blueprint/plugins/buttons/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/buttons/icons/key.png -------------------------------------------------------------------------------- /blueprint/plugins/buttons/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/buttons/icons/tick.png -------------------------------------------------------------------------------- /blueprint/plugins/buttons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/buttons/readme.txt -------------------------------------------------------------------------------- /blueprint/plugins/buttons/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/buttons/screen.css -------------------------------------------------------------------------------- /blueprint/plugins/fancy-type/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/fancy-type/readme.txt -------------------------------------------------------------------------------- /blueprint/plugins/fancy-type/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/fancy-type/screen.css -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/icons/doc.png -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/icons/email.png -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/icons/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/icons/external.png -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/icons/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/icons/feed.png -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/icons/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/icons/im.png -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/icons/lock.png -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/icons/pdf.png -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/icons/visited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/icons/visited.png -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/icons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/icons/xls.png -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/readme.txt -------------------------------------------------------------------------------- /blueprint/plugins/link-icons/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/link-icons/screen.css -------------------------------------------------------------------------------- /blueprint/plugins/rtl/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/rtl/readme.txt -------------------------------------------------------------------------------- /blueprint/plugins/rtl/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/plugins/rtl/screen.css -------------------------------------------------------------------------------- /blueprint/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/print.css -------------------------------------------------------------------------------- /blueprint/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/screen.css -------------------------------------------------------------------------------- /blueprint/src/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/src/forms.css -------------------------------------------------------------------------------- /blueprint/src/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/src/grid.css -------------------------------------------------------------------------------- /blueprint/src/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/src/grid.png -------------------------------------------------------------------------------- /blueprint/src/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/src/ie.css -------------------------------------------------------------------------------- /blueprint/src/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/src/print.css -------------------------------------------------------------------------------- /blueprint/src/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/src/reset.css -------------------------------------------------------------------------------- /blueprint/src/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/blueprint/src/typography.css -------------------------------------------------------------------------------- /debug/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/debug/README.textile -------------------------------------------------------------------------------- /debug/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/debug/debug.css -------------------------------------------------------------------------------- /debug/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/debug/debug.html -------------------------------------------------------------------------------- /features/generate_stylesheets.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/features/generate_stylesheets.feature -------------------------------------------------------------------------------- /features/step_definitions/blueprint_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/features/step_definitions/blueprint_steps.rb -------------------------------------------------------------------------------- /features/support/blueprint_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/features/support/blueprint_app.rb -------------------------------------------------------------------------------- /features/support/blueprint_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/features/support/blueprint_helpers.rb -------------------------------------------------------------------------------- /features/support/document_element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/features/support/document_element.rb -------------------------------------------------------------------------------- /features/support/element_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/features/support/element_helpers.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/features/support/jquery.js -------------------------------------------------------------------------------- /lib/blueprint/blueprint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/blueprint.rb -------------------------------------------------------------------------------- /lib/blueprint/compressor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/compressor.rb -------------------------------------------------------------------------------- /lib/blueprint/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/core_ext.rb -------------------------------------------------------------------------------- /lib/blueprint/css_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/css_parser.rb -------------------------------------------------------------------------------- /lib/blueprint/custom_layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/custom_layout.rb -------------------------------------------------------------------------------- /lib/blueprint/grid.css.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/grid.css.erb -------------------------------------------------------------------------------- /lib/blueprint/grid_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/grid_builder.rb -------------------------------------------------------------------------------- /lib/blueprint/namespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/namespace.rb -------------------------------------------------------------------------------- /lib/blueprint/semantic_class_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/semantic_class_names.rb -------------------------------------------------------------------------------- /lib/blueprint/validate/COPYRIGHT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/validate/COPYRIGHT.html -------------------------------------------------------------------------------- /lib/blueprint/validate/JIGSAW_COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/validate/JIGSAW_COPYRIGHT -------------------------------------------------------------------------------- /lib/blueprint/validate/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/validate/README.html -------------------------------------------------------------------------------- /lib/blueprint/validate/XERCES_COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/validate/XERCES_COPYING.txt -------------------------------------------------------------------------------- /lib/blueprint/validate/css-validator-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/validate/css-validator-javadoc.jar -------------------------------------------------------------------------------- /lib/blueprint/validate/css-validator.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/validate/css-validator.jar -------------------------------------------------------------------------------- /lib/blueprint/validate/jigsaw.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/validate/jigsaw.jar -------------------------------------------------------------------------------- /lib/blueprint/validate/xerces.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/validate/xerces.jar -------------------------------------------------------------------------------- /lib/blueprint/validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/blueprint/validator.rb -------------------------------------------------------------------------------- /lib/compress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/compress.rb -------------------------------------------------------------------------------- /lib/settings.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/settings.example.yml -------------------------------------------------------------------------------- /lib/validate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/lib/validate.rb -------------------------------------------------------------------------------- /templates/psd/fixed-width.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/templates/psd/fixed-width.psd -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/parts/elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/tests/parts/elements.html -------------------------------------------------------------------------------- /tests/parts/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/tests/parts/forms.html -------------------------------------------------------------------------------- /tests/parts/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/tests/parts/grid.html -------------------------------------------------------------------------------- /tests/parts/plugins/link-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/tests/parts/plugins/link-icons.html -------------------------------------------------------------------------------- /tests/parts/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/tests/parts/sample.html -------------------------------------------------------------------------------- /tests/parts/test-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/tests/parts/test-small.jpg -------------------------------------------------------------------------------- /tests/parts/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/tests/parts/test.jpg -------------------------------------------------------------------------------- /tests/parts/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuaclayton/blueprint-css/HEAD/tests/parts/valid.png --------------------------------------------------------------------------------