<?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>Dan Dumont :: web designer, developer, and geek</title>
	<atom:link href="http://dandumont.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dandumont.com</link>
	<description>The home of the Boston-based web designer and developer, Dan Dumont</description>
	<lastBuildDate>Wed, 24 Aug 2011 14:43:48 +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>Nested Rules Using the LESS Framework</title>
		<link>http://dandumont.com/notes/nested-css/</link>
		<comments>http://dandumont.com/notes/nested-css/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 01:15:47 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[notes]]></category>

		<guid isPermaLink="false">http://dandumont.com/?p=24</guid>
		<description><![CDATA[Lately I&#8217;ve been toying with the LESS framework. With LESS, developers are able to use CSS variables, mixins and nested rules. I understand that variables and mixins can help a user code more efficiently, but what I was most interested &#8230; <a href="http://dandumont.com/notes/nested-css/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve been toying with the LESS framework. With LESS, developers are able to use CSS variables, mixins and nested rules. I understand that variables and mixins can help a user code more efficiently, but what I was most interested in was the nesting. With LESS, we can code something like this:</p>
<pre>#header {
  h1 {
    font-size: 26px;
    font-weight: bold;
  }
  p { font-size: 12px;
    a { text-decoration: none;
      &amp;:hover { border-width: 1px }
    }
  }
}
</pre>
<p>This code will produce the following:</p>
<pre>
#header h1 {
  font-size: 26px;
  font-weight: bold;
}
#header p {
  font-size: 12px;
}
#header p a {
  text-decoration: none;
}
#header p a:hover {
  border-width: 1px;
}
</pre>
<p>Pretty neat if you ask me. Check it out at <a href="http://lesscss.org/">lesscss.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dandumont.com/notes/nested-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Little Big Details</title>
		<link>http://dandumont.com/notes/little-big-details/</link>
		<comments>http://dandumont.com/notes/little-big-details/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 13:20:28 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[notes]]></category>
		<category><![CDATA[details]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://dandumont.com/?p=17</guid>
		<description><![CDATA[I stumbled across this website yesterday and found it very intriguing. To me, the subtle details of a website or an app don&#8217;t get enough credit. This site showcases some of those small, but useful elements. Little Big Details]]></description>
			<content:encoded><![CDATA[<p>I stumbled across this website yesterday and found it very intriguing. To me, the subtle details of a website or an app don&#8217;t get enough credit. This site showcases some of those small, but useful elements.</p>
<p><a href="http://littlebigdetails.com/">Little Big Details</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dandumont.com/notes/little-big-details/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

