<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tony Thomas &#187; blueprint</title>
	<atom:link href="http://anthonygthomas.com/tag/blueprint/feed/" rel="self" type="application/rss+xml" />
	<link>http://anthonygthomas.com</link>
	<description>Father to two, husband to one, web developer and musician.</description>
	<lastBuildDate>Fri, 27 Apr 2012 19:26:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Blueprint: Taking a Close Look at grid.css</title>
		<link>http://anthonygthomas.com/2009/11/09/blueprint-taking-a-close-look-at-grid-css/</link>
		<comments>http://anthonygthomas.com/2009/11/09/blueprint-taking-a-close-look-at-grid-css/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 02:31:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blueprint Framework]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[blueprint]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=191</guid>
		<description><![CDATA[About Blueprint Blueprint is a CSS framework, which aims to cut down on your development time. It gives you a solid foundation to build your project on top of, with an easy-to-use grid, sensible typography, useful plugins, and even a stylesheet for printing. .container container is where it all begins. This establishes your centered div [...]]]></description>
			<content:encoded><![CDATA[<h3>About Blueprint</h3>
<blockquote><p><a href="http://blueprintcss.org/" onclick="pageTracker._trackPageview('/outgoing/blueprintcss.org/?referer=');">Blueprint</a> is a CSS framework, which aims to cut down on your development time. It gives you a solid foundation to build your project on top of, with an easy-to-use grid, sensible typography, useful plugins, and even a stylesheet for printing.</p></blockquote>
<h3>.container</h3>
<pre class="brush: css; first-line: 18; title: ; notranslate">/* A container should group all your columns. */
.container {
width: 950px;
margin: 0 auto;
}</pre>
<p><span id="more-191"></span></pre>
<p><code>container</code> is where it all begins. This establishes your centered div with a width of 950 pixels. If you've done much CSS, this should look pretty familiar:</p>
<pre class="brush: css; title: ; notranslate">margin: 0 auto; /* This is what centers the div */</pre>
<p>Not much else to say except all of your other columns should be inside a div with the <code>container</code> class. Let's move on.</p>
<h3>.showgrid</h3>
<pre class="brush: css; first-line: 24; title: ; notranslate">.showgrid { background: url(src/grid.png);  }</pre>
<p><code>showgrid</code> is a nice tool to display your columns when you're laying out a page. Simply add it to the <code>container</code> div like so:</p>
<pre class="brush: xml; title: ; notranslate">&lt;div class=&quot;container showgrid&quot;&gt;DIV contents&lt;/div&gt;</pre>
<p>Once you're satisfied with how things are positioned, remove <code>showgrid</code> from your classes.</p>
<p>Let's skip down to line 33 or so.</p>
<h3>.span-x</h3>
<pre class="brush: css; first-line: 33; title: ; notranslate">/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3, div.span-4, div.span-5,
div.span-6, div.span-7, div.span-8, div.span-9, div.span-10,
div.span-11, div.span-12, div.span-13, div.span-14, div.span-15,
div.span-16, div.span-17, div.span-18, div.span-19, div.span-20,
div.span-21, div.span-22, div.span-23, div.span-24 {
  float: left;
  margin-right: 10px;
}</pre>
<p>This just sets up your span-x columns to all float left. It's a bit counter-intuitive, but this makes them all wrap around to the right of each other. It also sets up the 10 pixel margin to the right of each one for a nice gutter. That is, except for <code>last</code>. <code>last</code> is always the last column and forces any div with a <code>span-x</code> class to go below it. It also has no right margin:</p>
<pre class="brush: css; first-line: 44; title: ; notranslate">div.last { margin-right: 0; }</pre>
<p>Next the <code>span-x</code> widths are set:</p>
<pre class="brush: css; first-line: 46; title: ; notranslate">/* Use these classes to set the width of a column. */
.span-1  { width: 30px; }
.span-2  { width: 70px; }
.span-3  { width: 110px; }
.span-4  { width: 150px; }
.span-5  { width: 190px; }
.span-6  { width: 230px; }
.span-7  { width: 270px; }
.span-8  { width: 310px; }
.span-9  { width: 350px; }
.span-10 { width: 390px; }
.span-11 { width: 430px; }
.span-12 { width: 470px; }
.span-13 { width: 510px; }
.span-14 { width: 550px; }
.span-15 { width: 590px; }
.span-16 { width: 630px; }
.span-17 { width: 670px; }
.span-18 { width: 710px; }
.span-19 { width: 750px; }
.span-20 { width: 790px; }
.span-21 { width: 830px; }
.span-22 { width: 870px; }
.span-23 { width: 910px; }
.span-24, div.span-24 { width: 950px; margin: 0; }</pre>
<p>Notice above that <code>span-24</code> takes up the full width with no right margin. Want a wider gutter than the pre-established 10 pixels? No problem.</p>
<h3>.append-x</h3>
<pre class="brush: css; first-line: 72; title: ; notranslate">/* Add these to a column to append empty cols. */
.append-1  { padding-right: 40px; }
.append-2  { padding-right: 80px; }
.append-3  { padding-right: 120px; }
.append-4  { padding-right: 160px; }
.append-5  { padding-right: 200px; }
.append-6  { padding-right: 240px; }
.append-7  { padding-right: 280px; }
.append-8  { padding-right: 320px; }
.append-9  { padding-right: 360px; }
.append-10 { padding-right: 400px; }
.append-11 { padding-right: 440px; }
.append-12 { padding-right: 480px; }
.append-13 { padding-right: 520px; }
.append-14 { padding-right: 560px; }
.append-15 { padding-right: 600px; }
.append-16 { padding-right: 640px; }
.append-17 { padding-right: 680px; }
.append-18 { padding-right: 720px; }
.append-19 { padding-right: 760px; }
.append-20 { padding-right: 800px; }
.append-21 { padding-right: 840px; }
.append-22 { padding-right: 880px; }
.append-23 { padding-right: 920px; } </pre>
<p>Remember, each of the <code>span-x</code> columns are 30 pixels wide with a 10-pixel right margin. Likewise the above <code>append-x</code> classes will add an additional column to the right. Just do the math. <code>span-1</code> adds 40 pixels. <code>span-2</code>, 80 pixels and so on. We can add columns to the left with the <code>prepend</code> classes in the same way.</p>
<h3>.prepend-x</h3>
<pre class="brush: css; first-line: 97; title: ; notranslate">/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 40px; }
.prepend-2  { padding-left: 80px; }
.prepend-3  { padding-left: 120px; }
.prepend-4  { padding-left: 160px; }
.prepend-5  { padding-left: 200px; }
.prepend-6  { padding-left: 240px; }
.prepend-7  { padding-left: 280px; }
.prepend-8  { padding-left: 320px; }
.prepend-9  { padding-left: 360px; }
.prepend-10 { padding-left: 400px; }
.prepend-11 { padding-left: 440px; }
.prepend-12 { padding-left: 480px; }
.prepend-13 { padding-left: 520px; }
.prepend-14 { padding-left: 560px; }
.prepend-15 { padding-left: 600px; }
.prepend-16 { padding-left: 640px; }
.prepend-17 { padding-left: 680px; }
.prepend-18 { padding-left: 720px; }
.prepend-19 { padding-left: 760px; }
.prepend-20 { padding-left: 800px; }
.prepend-21 { padding-left: 840px; }
.prepend-22 { padding-left: 880px; }
.prepend-23 { padding-left: 920px; } </pre>
<p><code>prepend-1</code> adds 40 pixels to the left of a column. <code>prepend-2</code> adds 80 pixels and so on. As long as we're talking about positioning, let's skip ahead a little bit.</p>
<h3>.push-x &amp; .pull-x</h3>
<pre class="brush: css; first-line: 138; title: ; notranslate">/* Use these classes on an element to push it into the
   next column, or to pull it into the previous column.  */

.pull-1 { margin-left: -40px; }
.pull-2 { margin-left: -80px; }
.pull-3 { margin-left: -120px; }
.pull-4 { margin-left: -160px; }
.pull-5 { margin-left: -200px; }

.pull-1, .pull-2, .pull-3,
.pull-4, .pull-5, .pull-5 {
  float:left;
	position:relative;
}

.push-1 { margin: 0 -40px 1.5em 40px; }
.push-2 { margin: 0 -80px 1.5em 80px; }
.push-3 { margin: 0 -120px 1.5em 120px; }
.push-4 { margin: 0 -160px 1.5em 160px; }
.push-5 { margin: 0 -200px 1.5em 200px; }

.push-0, .push-1, .push-2,
.push-3, .push-4, .push-5 {
  float: right;
	position:relative;
}</pre>
<p><code>pull-x</code> and <code>push-x</code> function in a similar way to <code>append-x</code> and <code>prepend-x</code>, except they'll actually push columns into one another instead of creating a wider gutter. <code>push-1</code> pushes the page element over to the right by one, 40-pixel column. <code>pull-1</code> pulls the page element over to the left by one 40-pixel column.</p>
<p>We skipped over some stuff. Let's go back to it:</p>
<h3>.border</h3>
<pre class="brush: css; first-line: 123; title: ; notranslate">/* Border on right hand side of a column. */
div.border {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #eee;
}</pre>
<p><code>border</code> adds a right-border to any page element. Notice the right padding, margin and 1-pixel border all add up to 10 pixels to maintain the standard 10-pixel gutter.</p>
<h3>.colborder</h3>
<p><code>colborder</code> does the same except the right margin spans an entire column:</p>
<pre class="brush: css; first-line: 130; title: ; notranslate">/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right: 24px;
  margin-right: 25px;
  border-right: 1px solid #eee;
}</pre>
<p>The right padding, margin and 1-pixel border add up to 50 pixels this time.</p>
<h3>.box</h3>
<p><code>box</code> creates a padded box inside a column.</p>
<pre class="brush: css; first-line: 170; title: ; notranslate">.box {
  padding: 1.5em;
  margin-bottom: 1.5em;
  background: #E5ECF9;
}</pre>
<h3>hr</h3>
<p><code>hr</code> gets a nice default setting to make sure it crosses your column:</p>
<pre class="brush: css; first-line: 177; title: ; notranslate">hr {
  background: #ddd;
  color: #ddd;
  clear: both;
  float: none;
  width: 100%;
  height: .1em;
  margin: 0 0 1.45em;
  border: none;
}
hr.space {
  background: #fff;
  color: #fff;
}</pre>
<p>I'm actually going to skip to the end because the <code>clearfix</code> classes seem a bit outmoded after reading the <a href="http://www.positioniseverything.net/easyclearing.html" onclick="pageTracker._trackPageview('/outgoing/www.positioniseverything.net/easyclearing.html?referer=');">article they are based on</a>. <a href="http://www.sitepoint.com/blogs/2005/02/26/simple-clearing-of-floats/" onclick="pageTracker._trackPageview('/outgoing/www.sitepoint.com/blogs/2005/02/26/simple-clearing-of-floats/?referer=');">Read this article instead</a>.</p>
<h3>.clear</h3>
<p><code>clear</code> simply forces a column to go beneath the column before it.</p>
<pre class="brush: css; first-line: 212; title: ; notranslate">.clear { clear:both; }</pre>
<p>That's it. Hopefully reading this will give you a good sense of what positioning classes are available in <a href="http://blueprintcss.org/" onclick="pageTracker._trackPageview('/outgoing/blueprintcss.org/?referer=');">Blueprint</a> and how to use them. Please leave a comment if anything needs clarification.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2009/11/09/blueprint-taking-a-close-look-at-grid-css/" rel="bookmark" title="November 9, 2009">Blueprint: Taking a Close Look at grid.css</a></li>
<li><a href="http://anthonygthomas.com/2011/04/18/css-scaffolding/" rel="bookmark" title="April 18, 2011">CSS Scaffolding</a></li>
<li><a href="http://anthonygthomas.com/2008/11/22/blueprint-css-tutorial-file/" rel="bookmark" title="November 22, 2008">Blueprint CSS Tutorial File</a></li>
<li><a href="http://anthonygthomas.com/2008/12/16/when-using-a-grid-layout-css-framework-do-the-math/" rel="bookmark" title="December 16, 2008">When Using a Grid Layout CSS Framework, Do the Math</a></li>
<li><a href="http://anthonygthomas.com/2010/02/14/why-use-blueprint-and-the-960-grid-system-in-the-baseline-theme/" rel="bookmark" title="February 14, 2010">Why Use Blueprint and the 960 Grid System in the Baseline Theme?</a></li>
</ul>
<p><!-- Similar Posts took 5.208 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2009/11/09/blueprint-taking-a-close-look-at-grid-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incorporating Blueprint CSS Into Your New WordPress Theme</title>
		<link>http://anthonygthomas.com/2008/11/23/incorporating-blueprint-css-into-your-new-wordpress-theme/</link>
		<comments>http://anthonygthomas.com/2008/11/23/incorporating-blueprint-css-into-your-new-wordpress-theme/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 15:07:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blueprint Framework]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blueprint]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=50</guid>
		<description><![CDATA[If you&#8217;re familiar with the Blueprint CSS framework, you already know it can make your life a lot easier. So how do you get it into your WordPress theme? Luckily, WordPress is designed to make your life easier too. I&#8217;m assuming your know the basics of WordPress Theme Development. That is, at the very least [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re familiar with the <a href="http://www.blueprintcss.org/" onclick="pageTracker._trackPageview('/outgoing/www.blueprintcss.org/?referer=');">Blueprint CSS framework</a>, you already know it can make your life a lot easier. So how do you get it into your <a href="http://wordpress.org" onclick="pageTracker._trackPageview('/outgoing/wordpress.org?referer=');">WordPress</a> theme? Luckily, WordPress is designed to make your life easier too.</p>
<p>I&#8217;m assuming your know the basics of <a href="http://codex.wordpress.org/Theme_Development" onclick="pageTracker._trackPageview('/outgoing/codex.wordpress.org/Theme_Development?referer=');">WordPress Theme Development</a>. That is, at the very least you need:</p>
<ul>
<li>header.php</li>
<li>footer.php</li>
<li>index.php</li>
<li>style.css</li>
</ul>
<p>Put those files in a folder named after your theme. And put that folder in <code>/wordpressroot/wp-content/themes/</code>.</p>
<p>Once you&#8217;ve gotten that far, download the Blueprint CSS Framework and drop the &#8220;blueprint&#8221; folder from that download into your theme&#8217;s directory.</p>
<p>Finally, to include the new CSS files into your theme, just add this code to your header:</p>
<p><code>&lt;link rel="stylesheet" href="&lt;?php bloginfo('stylesheet_directory'); ?&gt;/blueprint/screen.css" type="text/css" media="screen, projection"&gt;<br />
&lt;link rel="stylesheet" href="&lt;?php bloginfo('stylesheet_directory'); ?&gt;/blueprint/print.css" type="text/css" media="print"&gt;<br />
&lt;!--[if IE]&gt;<br />
&lt;link rel="stylesheet" href="&lt;?php bloginfo('stylesheet_directory'); ?&gt;/blueprint/ie.css" type="text/css" media="screen, projection"&gt;<br />
&lt;![endif]--&gt;<br />
&lt;link rel="stylesheet" href="&lt;?php bloginfo('stylesheet_url'); ?&gt;" type="text/css" media="screen" /&gt;</code></p>
<p>Pay attention to the order. You want to make sure that <code>href="&lt;?php bloginfo('stylesheet_url'); ?&gt;"</code> appears last in the list of style sheets. That&#8217;s your <code>style.css</code> where you can tailor the CSS for your specific design.</p>
<p>That&#8217;s it.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2008/11/23/incorporating-blueprint-css-into-your-new-wordpress-theme/" rel="bookmark" title="November 23, 2008">Incorporating Blueprint CSS Into Your New WordPress Theme</a></li>
<li><a href="http://anthonygthomas.com/2010/02/08/introducing-the-baseline-development-wordpress-theme/" rel="bookmark" title="February 8, 2010">Introducing the Baseline Development WordPress Theme</a></li>
<li><a href="http://anthonygthomas.com/2008/11/26/getting-blueprint-css-javascript-libraries-into-your-cakephp-layout/" rel="bookmark" title="November 26, 2008">Getting Blueprint CSS &#038; JavaScript Libraries Into Your CakePHP Layout</a></li>
<li><a href="http://anthonygthomas.com/2010/02/16/baseline-theme-version-1-0-1/" rel="bookmark" title="February 16, 2010">Baseline Theme Version 1.0.1</a></li>
<li><a href="http://anthonygthomas.com/2008/11/22/blueprint-css-readme-file/" rel="bookmark" title="November 22, 2008">Blueprint CSS Readme File</a></li>
</ul>
<p><!-- Similar Posts took 4.319 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2008/11/23/incorporating-blueprint-css-into-your-new-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blueprint CSS Tutorial File</title>
		<link>http://anthonygthomas.com/2008/11/22/blueprint-css-tutorial-file/</link>
		<comments>http://anthonygthomas.com/2008/11/22/blueprint-css-tutorial-file/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 21:25:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[blueprint]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=41</guid>
		<description><![CDATA[Just like the README file for Blueprint CSS, I wanted to refer to the TUTORIAL file in a more readable format. Here it is formatted for easy reading. Blueprint CSS Framework Tutorial Welcome to this tutorial on Blueprint. It will give you a thorough intro to what you can do with the framework, and a [...]]]></description>
			<content:encoded><![CDATA[<p>Just like the <a href="http://anthonygthomas.com/2008/11/22/blueprint-css-readme-file/">README file</a> for Blueprint CSS, I wanted to refer to the TUTORIAL file in a more readable format. Here it is formatted for easy reading.</p>
<h3>Blueprint CSS Framework Tutorial</h3>
<p>Welcome to this tutorial on Blueprint. It will give you a thorough intro to what you can do with the framework, and a few notes on what you shouldn&#8217;t do with it. Let&#8217;s get started.</p>
<h3>About Blueprint</h3>
<p>Blueprint is a CSS framework, designed to cut down on your development time. It gives you a solid foundation to build your CSS on top of, including some sensible default typography, a customizable grid, a print stylesheet and much more.</p>
<p>However, BP is not a silver bullet, and it&#8217;s best suited for websites where each page may require it&#8217;s own design. Take a look at existing BP pages before deciding if the framework is right for you. You may also check out the test files in the <code>tests</code> directory, which demonstrates most of the features in Blueprint.</p>
<p>The word &#8220;framework&#8221; may be a bit misleading in this context, since BP does not make suggestions on how you should organize or write your CSS. It&#8217;s more like a &#8220;css toolbox&#8221; with helpful bits and pieces, from which you may pick and choose based on your needs.</p>
<h3>Structural Overview</h3>
<p>From the bottom up, here are the CSS layers in Blueprint:</p>
<ul>
<li>CSS reset: Removes any default CSS rules set by each browser.</li>
<li>Typography: Gives you some nice default typography and colors.</li>
<li>Grid: Provides a set of CSS classes for making grid layouts.</li>
</ul>
<p>The second part of Blueprint are the scripts, which lets you customize most aspects of the framework, from column count and widths, to output paths and CSS class namespaces. We have two scripts:</p>
<ul>
<li>Compressor: For compressing and customizing the source files.</li>
<li>Validator: 	For validating the Blueprint core files.</li>
</ul>
<p>That&#8217;s the quick overview, so now we can finally get into the details. First, we&#8217;ll take a look at the CSS in Blueprint. We&#8217;ll then move on to the scripts, where I&#8217;ll show you how to customize the framework.</p>
<h3>Setting Up Blueprint</h3>
<p>To use Blueprint, you must include three files in your HTML:</p>
<ul>
<li><code>blueprint/screen.css</code>:	All CSS for screen, projection viewing.</li>
<li><code>blueprint/print.css</code>: A basic stylesheet for printing.</li>
<li><code>blueprint/ie.css</code>:	A few needed corrections for Internet Explorer</li>
</ul>
<p>To include them, use the following HTML (make sure the href paths are correct):<br />
<code> &lt;link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection"&gt;<br />
&lt;link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print"&gt;<br />
&lt;!--[if IE]&gt;<br />
&lt;link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection"&gt;<br />
&lt;![endif]--&gt;</code><br />
Remember to add trailing slashes if you&#8217;re using XHTML (&#8221; /&gt;&#8221;).</p>
<h3>Using the CSS in Blueprint</h3>
<p>As mentioned before, there&#8217;s basically three layers of CSS in Blueprint. The first two layers, the browser CSS reset and the default typography, apply themselves by changing CSS of standard HTML elements.<br />
In other words, you don&#8217;t need to change anything in these files. If you for instance want to change the font size, do this in your own stylesheet, so that it&#8217;s easy to upgrade Blueprint when new versions arrive.</p>
<h4>Classes for Typography</h4>
<p>While the typography of Blueprint mainly applies itself, there&#8217;s a few classes provided. Here&#8217;s a list of their names and what they do:</p>
<dl>
<dt><code>.small</code></dt>
<dd>Makes the text of this element smaller.</dd>
<dt><code>.large</code></dt>
<dd>Makes the text of this element larger.</dd>
<dt><code>.hide</code></dt>
<dd>Hides an element.</dd>
<dt><code>.quiet</code></dt>
<dd>Tones down the font color for this element.</dd>
<dt><code>.loud</code></dt>
<dd>Makes this elements text black.</dd>
<dt><code>.highlight</code></dt>
<dd>Adds a yellow background to the text.</dd>
<dt><code>.added</code></dt>
<dd>Adds green background to the text.</dd>
<dt><code>.removed<code> </code></code></dt>
<dd>Adds red background to the text.</dd>
<dt><code>.first</code></dt>
<dd>Removes any left sided margin/padding from the element.</dd>
<dt><code>.last</code></dt>
<dd>Removes any right sided margin/padding from the element.</dd>
<dt><code>.top</code></dt>
<dd>Removes any top margin/padding from the element.</dd>
<dt><code>.bottom</code></dt>
<dd>Removes any bottom margin/padding from the element.</dd>
</dl>
<h4>Styling Forms</h4>
<p>To make Blueprint style your input elements, each text input element should have the class <code>.text</code>, or <code>.title</code>, where <code>.text</code> is the normal size, and <code>.title</code> gives you an input field with larger text.</p>
<p>There&#8217;s also a few classes you may use for success and error messages:</p>
<dl>
<dt><code>div.error</code></dt>
<dd>Creates an error box (red).</dd>
<dt><code>div.notice</code></dt>
<dd>Creates a box for notices (yellow).</dd>
<dt><code>div.success</code></dt>
<dd>Creates a box for success messages (green).</dd>
</dl>
<h4>Creating a Grid</h4>
<p>The third layer is the grid CSS classes, which is the tool Blueprint gives you to create almost any kind of grid layout for your site. Keep in mind that most of the CSS behind the grid can be customized (explained below). In this section however, I&#8217;m using the default settings.</p>
<p>The default grid is made up of 24 columns, each spanning 30px, with a 10px margin between each column. The total width comes to 950px, which is a good width for 1024&#215;768 resolution displays. If you&#8217;re interested in a narrower design, see the section on customizing the grid, below.</p>
<p>So how do you set up a grid? By using classes provided by Blueprint. To create a column, make a new <code>&lt;div&gt;</code>, and apply one of the <code>.span-x</code> classes to it. For instance, if you want a 3-column setup, with two narrow and one wide column, a header and a footer here&#8217;s how you do it:<br />
<code>&lt;div class="container"&gt;<br />
&lt;div class="span-24"&gt;<br />
The header<br />
&lt;/div&gt;</code></p>
<p><code>&lt;div class="span-4"&gt;<br />
The first column<br />
&lt;/div&gt;<br />
&lt;div class="span-16"&gt;<br />
The center column<br />
&lt;/div&gt;<br />
&lt;div class="span-4 last"&gt;<br />
The last column<br />
&lt;/div&gt;</code></p>
<p><code>&lt;div class="span-24"&gt;<br />
The footer<br />
&lt;/div&gt;<br />
&lt;/div&gt;</code></p>
<p>In addition to the spans, there are two important classes you need to know about. First of all, every Blueprint site needs to be wrapped in a div with the class <code>.container</code>, which is usually placed right after the body tag.</p>
<p>Second, the last column in a row (which by default has 24 columns), needs the class <code>.last</code> to remove its left hand margin. Note, however, that each <code>.span-24</code> don&#8217;t need the <code>.last</code> class, since these always span the entire width of the page.</p>
<p>To create basic grids, this is all you need to know. The grid CSS however, provides many more classes<br />
for more intricate designs. To see some of them in action, check out the files in <code>tests/parts/</code>. These files demonstrate what&#8217;s possible with the grid in Blueprint.</p>
<p>Here&#8217;s a quick overview of the other classes you can use in to make your grid:</p>
<dl>
<dt><code>.append-x</code></dt>
<dd>Appends x number of empty columns after a column.</dd>
<dt><code>.prepend-x</code></dt>
<dd>Preppends x number of empty columns before a column.</dd>
<dt><code>.push-x</code></dt>
<dd>Pushes a column x columns to the left. Can be used to swap columns.</dd>
<dt><code>.pull-x</code></dt>
<dd>Pulls a column x columns to the right. Can be used to swap columns.</dd>
<dt><code>.border</code></dt>
<dd>Applies a border to the right side of the column.</dd>
<dt><code>.colborder</code></dt>
<dd>Appends one empty column, with a border down the middle.</dd>
<dt><code>.clear</code></dt>
<dd>Makes a column drop below a row, regardless of space.</dd>
<dt>.showgrid</dt>
<dd>Add to container or column to see the grid and baseline.</dd>
</dl>
<p>In this list, <code>x</code> is a number from 1 through 23 for append/prepend and 1 through 24 for push/pull. These numbers will of course change if you set a new number of columns in the settings file.</p>
<p>Here&#8217;s another example where we have four columns of equal width, with a border between the two first and the two last columns, as well as a four column gap in the middle:<br />
<code>&lt;div class="container"&gt;<br />
&lt;div class="span-5 border"&gt;<br />
The first column<br />
&lt;/div&gt;<br />
&lt;div class="span-5 append-4"&gt;<br />
The second column<br />
&lt;/div&gt;<br />
&lt;div class="span-5 border"&gt;<br />
The third column<br />
&lt;/div&gt;<br />
&lt;div class="span-5 last"&gt;<br />
The fourth (last) column<br />
&lt;/div&gt;<br />
&lt;/div&gt;</code></p>
<p>You may also nest columns to achieve the desired layout. Here&#8217;s a setup where we want four rectangles with two on top and two below on the first half of the page, and one single column spanning the second half of the page:</p>
<p><code> &lt;div class="container"&gt;<br />
&lt;div class="span-12"&gt;<br />
&lt;div class="span-6"&gt;<br />
Top left<br />
&lt;/div&gt;<br />
&lt;div class="span-6 last"&gt;<br />
Top right<br />
&lt;/div&gt;<br />
&lt;div class="span-6"&gt;<br />
Bottom left<br />
&lt;/div&gt;<br />
&lt;div class="span-6 last"&gt;<br />
Bottom right<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;div class="span-12 last"&gt;<br />
Second half of page<br />
&lt;/div&gt;<br />
&lt;/div&gt;</code></p>
<p>Try this code in your browser it it&#8217;s difficult to understand what it would look like. To see more examples on how to use these classes, check out <code>/tests/parts/grid.html</code>.</p>
<h3>The Scripts</h3>
<p>Blueprint comes with two scripts: one for compressing and customizing the CSS, and one for validating the core CSS files, which is handy if you&#8217;re making changes to these files.</p>
<h4>The Validator</h4>
<p>The validator has a fairly simple job &#8211; validate the CSS in the core BP files.  The script uses a bundled version of the W3C CSS validator to accomplish this.  To run it, you&#8217;ll need to have Ruby installed on your machine. You can then run the script like so: <code>$ ruby validate.rb</code>.</p>
<p>Note that there are a few validation errors shipping with Blueprint. These are known, and comes from a few CSS hacks needed to ensure consistent rendering across the vast browser field.</p>
<h4>The Compressor</h4>
<p>As the files you&#8217;ll include in your HTML are the compressed versions of the core CSS files, you&#8217;ll have to recompress the core if you&#8217;ve made any changes.  This is what the compressor script is for.</p>
<p>In addition this is where you customize the grid. To customize the grid, a special settings file is used, and the new CSS is generated once you run the compressor. The new compressed files will then reflect your settings file.</p>
<p>To recompress, you just have to run the script. This will parse the core CSS files and output new compressed files in the blueprint folder. As with the validator, Ruby has to be installed to use this script. In the <code>lib</code> directory, run: <code>$ruby compress.rb</code></p>
<p>Calling this file by itself will pull files from <code>blueprint/src</code> and concatenate them into three files; <code>ie.css</code>, <code>print.css</code>, and <code>screen.css</code>. However, argument variables can be set to change how this works. Calling <code>$ruby compress.rb -h</code> will reveal basic arguments you can pass to the script.</p>
<h4>Custom Settings</h4>
<p>To learn how to use custom settings, read through the documentation within <code>lib/compress.rb</code><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2008/11/22/blueprint-css-tutorial-file/" rel="bookmark" title="November 22, 2008">Blueprint CSS Tutorial File</a></li>
<li><a href="http://anthonygthomas.com/2009/11/09/blueprint-taking-a-close-look-at-grid-css/" rel="bookmark" title="November 9, 2009">Blueprint: Taking a Close Look at grid.css</a></li>
<li><a href="http://anthonygthomas.com/2011/04/18/css-scaffolding/" rel="bookmark" title="April 18, 2011">CSS Scaffolding</a></li>
<li><a href="http://anthonygthomas.com/2008/11/22/blueprint-css-readme-file/" rel="bookmark" title="November 22, 2008">Blueprint CSS Readme File</a></li>
<li><a href="http://anthonygthomas.com/2008/12/16/when-using-a-grid-layout-css-framework-do-the-math/" rel="bookmark" title="December 16, 2008">When Using a Grid Layout CSS Framework, Do the Math</a></li>
</ul>
<p><!-- Similar Posts took 5.380 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2008/11/22/blueprint-css-tutorial-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blueprint CSS Readme File</title>
		<link>http://anthonygthomas.com/2008/11/22/blueprint-css-readme-file/</link>
		<comments>http://anthonygthomas.com/2008/11/22/blueprint-css-readme-file/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 20:45:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[blueprint]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=37</guid>
		<description><![CDATA[Author&#8217;s note: This is word for word post of the Blueprint CSS file only because I&#8217;m tired of pulling up the text file and I&#8217;d rather read it in a nicely formatted HTML page. I&#8217;m sure others would prefer that too. Blueprint CSS Framework Readme Welcome to Blueprint! This is a CSS framework designed to [...]]]></description>
			<content:encoded><![CDATA[<p>Author&#8217;s note: This is word for word post of the Blueprint CSS file only because I&#8217;m tired of pulling up the text file and I&#8217;d rather read it in a nicely formatted HTML page. I&#8217;m sure others would prefer that too.</p>
<h3>Blueprint CSS Framework Readme</h3>
<p>Welcome to Blueprint! This is a CSS framework designed to cut down on your CSS development time.<br />
It gives you a solid foundation to build your own CSS on. Here are some of the features BP provides out-of-the-box:</p>
<ul>
<li>An easily customizable grid</li>
<li>Sensible default typography</li>
<li>A typographic baseline</li>
<li>Perfected browser CSS reset</li>
<li>A stylesheet for printing</li>
<li>Powerful scripts for customization</li>
<li>Absolutely no bloat!</li>
</ul>
<h3>Project Info</h3>
<ul>
<li><a href="http://github.com/joshuaclayton/blueprint-css" onclick="pageTracker._trackPageview('/outgoing/github.com/joshuaclayton/blueprint-css?referer=');">Web</a></li>
<li><a href="http://blueprintcss.lighthouseapp.com" onclick="pageTracker._trackPageview('/outgoing/blueprintcss.lighthouseapp.com?referer=');">Bug/Feature Tracking</a></li>
</ul>
<h3>Setup Instructions</h3>
<p>Here&#8217;s how you set up Blueprint on your site.</p>
<ol>
<li>Upload the &#8220;blueprint&#8221; folder in this folder to your server, and place it in whatever folder you&#8217;d like. A good choice would be your CSS folder.</li>
<li>Add the following three lines to every <code>&lt;head/&gt;</code> of your site. Make sure the three <code>href</code> paths are correct (here, BP is in my CSS folder):<br />
<blockquote><p><code>&lt;link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection"&gt;<br />
&lt;link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print"&gt;<br />
&lt;!--[if IE]&gt;<br />
&lt;link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection"&gt;<br />
&lt;![endif]--&gt;</code></p></blockquote>
<p>Remember to include trailing slashes (&#8221; /&gt;&#8221;) in these lines if you&#8217;re using XHTML.</li>
<li>For development, add the .showgrid class to any container or column to see the underlying grid.<br />
Check out the plugins directory for more advanced functionality.</li>
</ol>
<h3>Tutorials</h3>
<ul>
<li><a href="http://blueflavor.com/blog/design/blueprintcss_101.php" onclick="pageTracker._trackPageview('/outgoing/blueflavor.com/blog/design/blueprintcss_101.php?referer=');">Tutorial on BlueFlavor</a></li>
<li><a href="http://jdclayton.com/blueprints_compress_a_walkthrough.html" onclick="pageTracker._trackPageview('/outgoing/jdclayton.com/blueprints_compress_a_walkthrough.html?referer=');">How to customize BP with the compressor script</a></li>
<li><a href="http://subtraction.com/archives/2007/0318_oh_yeeaahh.php" onclick="pageTracker._trackPageview('/outgoing/subtraction.com/archives/2007/0318_oh_yeeaahh.php?referer=');">How to use a grid in a layout</a></li>
<li><a href="http://alistapart.com/articles/settingtypeontheweb" onclick="pageTracker._trackPageview('/outgoing/alistapart.com/articles/settingtypeontheweb?referer=');">How to use a baseline in your typography</a></li>
</ul>
<h3>Files in Blueprint</h3>
<p>The framework has a few files you should check out. Every file in the src directory contains lots of (hopefully) clarifying comments.</p>
<p>Compressed files (these go in the HTML):</p>
<ul>
<li><code>blueprint/screen.css</code></li>
<li><code>blueprint/print.css</code></li>
<li><code>blueprint/ie.css</code></li>
</ul>
<p>Source files:</p>
<ul>
<li><code>blueprint/src/reset.css</code><br />
This file resets CSS values that browsers tend to set for you.</li>
<li><code>blueprint/src/grid.css</code><br />
This file sets up the grid (it&#8217;s true). It has a lot of classes you apply to <code>&lt;div/&gt;</code> elements to set up any sort of column-based grid.</li>
<li><code>blueprint/src/typography.css</code><br />
This file sets some default typography. It also has a few methods for some really fancy stuff to do with your text.</li>
<li><code>blueprint/src/forms.css</code><br />
Includes some minimal styling of forms.</li>
<li><code>blueprint/src/print.css</code><br />
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.</li>
<li><code>blueprint/src/ie.css</code><br />
Includes every hack for our beloved IE6 and 7.</li>
</ul>
<p>Scripts:</p>
<ul>
<li><code>lib/compress.rb</code><br />
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 in <code>compress.rb</code> or run <code>$ruby compress.rb -h</code> for more information.</li>
<li><code>lib/validate.rb</code><br />
Validates the Blueprint core files with the W3C CSS validator.</li>
</ul>
<p>Other:</p>
<ul>
<li><code>blueprint/plugins/</code><br />
Contains additional functionality in the form of simple plugins for Blueprint. See individual readme files in the directory of each plugin for further instructions.</li>
<li><code>tests/</code><br />
Contains html files which tests most aspects of Blueprint. Open <code>tests/index.html</code> for further instructions.</li>
</ul>
<h3>Extra Information</h3>
<ul>
<li>For credits and origins, see AUTHORS.</li>
<li>For license instructions, see LICENSE.</li>
<li>For the latest updates, see CHANGELOG.</li>
</ul>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2008/11/22/blueprint-css-readme-file/" rel="bookmark" title="November 22, 2008">Blueprint CSS Readme File</a></li>
<li><a href="http://anthonygthomas.com/2008/11/23/incorporating-blueprint-css-into-your-new-wordpress-theme/" rel="bookmark" title="November 23, 2008">Incorporating Blueprint CSS Into Your New WordPress Theme</a></li>
<li><a href="http://anthonygthomas.com/2008/11/26/getting-blueprint-css-javascript-libraries-into-your-cakephp-layout/" rel="bookmark" title="November 26, 2008">Getting Blueprint CSS &#038; JavaScript Libraries Into Your CakePHP Layout</a></li>
<li><a href="http://anthonygthomas.com/2010/02/08/introducing-the-baseline-development-wordpress-theme/" rel="bookmark" title="February 8, 2010">Introducing the Baseline Development WordPress Theme</a></li>
<li><a href="http://anthonygthomas.com/2008/11/22/blueprint-css-tutorial-file/" rel="bookmark" title="November 22, 2008">Blueprint CSS Tutorial File</a></li>
</ul>
<p><!-- Similar Posts took 5.077 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2008/11/22/blueprint-css-readme-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

