<?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>The Open Code</title>
	<atom:link href="http://theopencode.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://theopencode.com</link>
	<description>I don&#039;t design the sites. I just make them work.</description>
	<lastBuildDate>Wed, 12 Jan 2011 05:15:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>CSS Specificity Explained</title>
		<link>http://theopencode.com/2011/01/css-specificity-explained/</link>
		<comments>http://theopencode.com/2011/01/css-specificity-explained/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 18:32:26 +0000</pubDate>
		<dc:creator>Bryce Mullican</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://theopencode.com/?p=4</guid>
		<description><![CDATA[/* HTML TAG = 1 point CLASS = 10 points ID = 100 points Inline = Nothing overrides inline styles */ html body div#wrap p + div.item #test{background:black;} /* 215 */ body #wrap div + p{background:blue;} /* 103 */ body #wrap div p{background:green;} /* 103 */ body #wrap p{background:yellow;} /* 102 */ #test{background:red;} /* 100 [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush: css;">/*
HTML TAG = 	1 point
CLASS = 	10 points
ID = 		100 points
Inline =    Nothing overrides inline styles
*/

html body div#wrap p + div.item #test{background:black;} /* 215 */

body #wrap div + p{background:blue;} /* 103 */

body #wrap div p{background:green;} /* 103 */

body #wrap p{background:yellow;} /* 102 */

#test{background:red;} /* 100 */	

#wrap .item p{background:orange;} /* 111 */

.item p#test{background:red;} /* 111 */

.item p{background:orange;} /* 11 */

p{background:green;}/* 1 */</pre>
]]></content:encoded>
			<wfw:commentRss>http://theopencode.com/2011/01/css-specificity-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://theopencode.com/2011/01/hello-world/</link>
		<comments>http://theopencode.com/2011/01/hello-world/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 15:27:47 +0000</pubDate>
		<dc:creator>Bryce Mullican</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theopencode.com/?p=1</guid>
		<description><![CDATA[Welcome to my new site.]]></description>
			<content:encoded><![CDATA[<p>Welcome to my new site.</p>
]]></content:encoded>
			<wfw:commentRss>http://theopencode.com/2011/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

