<?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>One Little Robot &#187; HTML</title>
	<atom:link href="http://www.onelittlerobot.co.uk/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onelittlerobot.co.uk</link>
	<description>Flash, Flex and PHP</description>
	<lastBuildDate>Mon, 13 Jun 2011 19:42:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>I didn’t pick the name! ;)</title>
		<link>http://www.onelittlerobot.co.uk/2009/11/01/i-didnt-pick-the-name/</link>
		<comments>http://www.onelittlerobot.co.uk/2009/11/01/i-didnt-pick-the-name/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 09:00:33 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Blueprint]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.onelittlerobot.co.uk/?p=185</guid>
		<description><![CDATA[I&#8217;ve been playing with a band recently and since we&#8217;ve started getting some gigs I&#8217;ve knocked together a little website (and some flyers), it was a bit of a rush and I&#8217;d like to re-do it using SASS before too long. http://www.thiscausticlife.co.uk/]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing with a band recently and since we&#8217;ve started getting some gigs I&#8217;ve knocked together a little website (and some flyers), it was a bit of a rush and I&#8217;d like to re-do it using <a href="http://www.onelittlerobot.co.uk/2009/10/16/sass-and-compass/">SASS</a> before too long.</p>
<p><a href="http://www.thiscausticlife.co.uk/">http://www.thiscausticlife.co.uk/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2009/11/01/i-didnt-pick-the-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sass and Compass</title>
		<link>http://www.onelittlerobot.co.uk/2009/10/16/sass-and-compass/</link>
		<comments>http://www.onelittlerobot.co.uk/2009/10/16/sass-and-compass/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 21:37:41 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Blueprint]]></category>
		<category><![CDATA[Compass]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Sass]]></category>

		<guid isPermaLink="false">http://www.onelittlerobot.co.uk/?p=157</guid>
		<description><![CDATA[I attended a presentation on using Sass and Compass at work recently. It&#8217;s amazing technology and makes coding in CSS quick and simple. I&#8217;ve been having a bit of a play and managed this site theme on the commute to work over a few days. OK, so it&#8217;s not perfect, I&#8217;m no designer but it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2009/10/sass1.png" rel="shadowbox[post-157];player=img;"><img class="alignleft size-full wp-image-174" title="Sass Code" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2009/10/sass1.png" alt="Sass Code" width="180" height="120" /></a>I attended a presentation on using <a href="http://sass-lang.com/">Sass</a> and <a href="http://compass-style.org/">Compass</a> at work recently. It&#8217;s amazing technology and makes coding in CSS quick and simple. I&#8217;ve been having a bit of a play and managed this site theme on the commute to work over a few days.</p>
<p>OK, so it&#8217;s not perfect, I&#8217;m no designer <img src='http://www.onelittlerobot.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  but it&#8217;s amazing how quickly you can get something working using these technologies. One of the real beautys of Sass is that the source files are so readable, so although created quickly it doesn&#8217;t feel hacked together, this means it&#8217;s easy to revisit the code and add to it later.</p>
<p>One of the most confusing aspects of these technologies is that they all call themselves frameworks!?</p>
<p>Sass is in itself almost a new language, based on CSS and <a href="http://haml-lang.com/">Haml</a>, it takes care of all the annoying aspects of CSS, readability, nesting rules, and most important of all variables.</p>
<p>You can now have variables in your CSS code, no more defining things throughout your style sheets and the headaches that result when these change. You simply define some constants at the top of the page for any reusable values. But thats not all, you can define functions as well! In Sass they are called &#8216;Mixins&#8217;, calling a Mixin returns a predefined chuck of code.</p>
<p>You create a Sass file and then compile it to CSS using ruby via the command prompt.</p>
<p>Well if you want to do things the hard way you do, this is where Compass comes in. Compass is another framework, that makes writing CSS even simpler, it comes with a lot of extra functionality onto of that already provided by Sass. As well as a lot of predefined CSS code to include in projects (such as a Sass version of the <a href="http://www.blueprintcss.org/">Blueprint</a> CSS framework) it has ruby commands to make the process of working with Sass simpler.</p>
<p>I&#8217;ve been using Blueprint for some time, the ruby scripts that come with Blueprint are great but nothing compared to using Sass and Compass.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2009/10/16/sass-and-compass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

