GitHub - joshuaclayton/blueprint-css: A CSS framework that aims to cut down on your CSS development time (original) (raw)

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:

Project Info

Setup Instructions

Here’s how you set up Blueprint on your site.

  1. 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.
  2. Add the following three lines to every <head/> of your site. Make sure the three href paths 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. 3. For development, add the .showgrid class to any container or column to see the underlying grid. Check out the plugins directory for more advanced functionality.

Tutorials

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):

Source files:

Scripts:

Other:

Extra Information