This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 6c24a608fdb44b69683ee5bfaf1c2cb597ae7c27
tree 56e50a0332021440d445ee7de99ebaf1ea11fdff
parent 7b0d045198a837b9f19dad6dce67439a069c04c4 parent 9be685760014b3258dcd83913b9b19f130551b2f
tree 56e50a0332021440d445ee7de99ebaf1ea11fdff
parent 7b0d045198a837b9f19dad6dce67439a069c04c4 parent 9be685760014b3258dcd83913b9b19f130551b2f
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Jun 29 20:05:32 -0700 2009 | |
| |
AUTHORS.textile | Sat Aug 22 19:58:54 -0700 2009 | |
| |
CHANGELOG | Sat Aug 22 19:58:54 -0700 2009 | |
| |
LICENSE | Thu Jul 02 19:45:05 -0700 2009 | |
| |
README.textile | Sat Aug 22 19:58:54 -0700 2009 | |
| |
Rakefile | Thu Jul 02 20:41:35 -0700 2009 | |
| |
TUTORIAL.textile | Sun Jul 26 19:40:33 -0700 2009 | |
| |
blueprint/ | Thu Aug 20 14:19:16 -0700 2009 | |
| |
lib/ | Thu Aug 20 14:35:40 -0700 2009 | |
| |
templates/ | Thu Aug 06 08:44:25 -0700 2009 | |
| |
test/ | Fri Jul 03 10:04:33 -0700 2009 | |
| |
tests/ | Sun Jun 14 19:26:21 -0700 2009 |
README.textile
Blueprint CSS Framework Readme
Welcome to Blueprint! This is a CSS framework designed to cut down on your CSS development time. It gives you a solid foundation to build your own CSS on. Here are some of the features BP provides out-of-the-box:
- An easily customizable grid
- Sensible default typography
- A typographic baseline
- Perfected browser CSS reset
- A stylesheet for printing
- Powerful scripts for customization
- Absolutely no bloat!
Project Info
- Web: http://blueprintcss.org
- Source: http://github.com/joshuaclayton/blueprint-css
- Wiki: http://github.com/joshuaclayton/blueprint-css/wikis/home
- Bug/Feature Tracking: http://blueprintcss.lighthouseapp.com
Setup Instructions
Here’s how you set up Blueprint on your site.
- Upload the “blueprint” folder in this folder to your server, and place it in whatever folder you’d like. A good choice would be your CSS folder.
- Add the following three lines to every
<head/>of your site. Make sure the threehrefpaths are correct (here, BP is in my CSS folder):<link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection"> <link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print"> <!--[if lt IE 8]> <link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection"> <![endif]-->
Remember to include trailing slashes (" />") in these lines if you’re using XHTML. - For development, add the .showgrid class to any container or column to see the underlying grid. Check out the
pluginsdirectory for more advanced functionality.
Tutorials
- Tutorial on BlueFlavor
- How to customize BP with the compressor script
- How to use a grid in a layout
- How to use a baseline in your typography
Files in Blueprint
The framework has a few files you should check out. Every file in the src directory contains lots of (hopefully) clarifying comments.
Compressed files (these go in the HTML):
blueprint/screen.cssblueprint/print.cssblueprint/ie.css
Source files:
blueprint/src/reset.css
This file resets CSS values that browsers tend to set for you.blueprint/src/grid.css
This file sets up the grid (it’s true). It has a lot of classes you apply to<div/>elements to set up any sort of column-based grid.blueprint/src/typography.css
This file sets some default typography. It also has a few methods for some really fancy stuff to do with your text.blueprint/src/forms.css
Includes some minimal styling of forms.blueprint/src/print.css
This file sets some default print rules, so that printed versions of your site looks better than they usually would. It should be included on every page.blueprint/src/ie.css
Includes every hack for our beloved IE6 and 7.
Scripts:
lib/compress.rb
A Ruby script for compressing and customizing your CSS. Set a custom namespace, column count, widths, output paths, multiple projects, and semantic class names. See commenting incompress.rbor run$ruby compress.rb -hfor more information.lib/validate.rb
Validates the Blueprint core files with the W3C CSS validator.
Other:
blueprint/plugins/
Contains additional functionality in the form of simple plugins for Blueprint. See individual readme files in the directory of each plugin for further instructions.tests/
Contains html files which tests most aspects of Blueprint. Opentests/index.htmlfor further instructions.
Extra Information
- For credits and origins, see AUTHORS.
- For license instructions, see LICENSE.
- For the latest updates, see CHANGELOG.







