<?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>Skyler Media</title>
	<atom:link href="http://skylermedia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://skylermedia.com</link>
	<description></description>
	<lastBuildDate>Sun, 13 Jun 2010 02:50:10 +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>Rounded List</title>
		<link>http://skylermedia.com/2010/06/11/rounded-list/</link>
		<comments>http://skylermedia.com/2010/06/11/rounded-list/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 00:44:15 +0000</pubDate>
		<dc:creator>apipkin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Schoolyard]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://sm.local:8080/?p=25</guid>
		<description><![CDATA[Rounded corners have been a major part of design the past few years. And rounded boxes with selectable items inside are no different. These UI elements have been made popular though mobile devices and are quickly consuming navigation areas all &#8230; <a href="http://skylermedia.com/2010/06/11/rounded-list/">Continue reading <span class="meta-nav">&#8674;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Rounded corners have been a major part of design the past few years. And rounded boxes with selectable items inside are no different. These UI elements have been made popular though mobile devices and are quickly consuming navigation areas all over the web. Here&#8217;s a look at what we are making. <a href="http://skylermedia.com/wp-content/uploads/2010/06/step6.gif" rel="lightbox[25]"><img class="aligncenter size-full wp-image-79" title="step6" src="http://skylermedia.com/wp-content/uploads/2010/06/step6.gif" alt="" width="200" height="180" /></a></p>
<p>First things first, we need a list. For this example we will be using a very simple list of fruits.</p>
<pre class="brush: xml; title: ;">&lt;ul&gt;
    &lt;li&gt;Apples&lt;/li&gt;
    &lt;li&gt;Bananas&lt;/li&gt;
    &lt;li&gt;Cherries&lt;/li&gt;
    &lt;li&gt;Dates&lt;/li&gt;
&lt;/ul&gt;</pre>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/step1.gif" rel="lightbox[25]"><img class="aligncenter size-full wp-image-74" title="step1" src="http://skylermedia.com/wp-content/uploads/2010/06/step1.gif" alt="" width="200" height="180" /></a></p>
<p>Nothing revolutionary there. Next we clean up the browser defined CSS. It&#8217;s recommended to always use some sort of CSS reset. Being a fan of Yahoo! UI, I use theirs, but there are others. I just made a quick piece here to remove the bullets, margin, and padding.</p>
<pre class="brush: css; title: ;">ul {
    width: 120px;
    margin: 0;
    padding: 0;
    list-style: none;
}</pre>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/step2.gif" rel="lightbox[25]"><img class="aligncenter size-full wp-image-75" title="step2" src="http://skylermedia.com/wp-content/uploads/2010/06/step2.gif" alt="" width="200" height="180" /></a></p>
<p>Next we add a border. First, we need to add the border to each &lt;li&gt;. The next step is to remove the top border from the all items except the first one using the <a href="http://meyerweb.com/eric/articles/webrev/200007a.html">sibling (+) selector</a>.</p>
<pre class="brush: css; title: ;">li {
	border: 1px solid #7f7f8c;
}
li+li {
	border-top: none;
}</pre>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/step3.gif" rel="lightbox[25]"><img class="aligncenter size-full wp-image-76" title="step3" src="http://skylermedia.com/wp-content/uploads/2010/06/step3.gif" alt="" width="200" height="180" /></a></p>
<p>That feels a little cramped. Let&#8217;s open it up a little bit and give it some breathing room.</p>
<pre class="brush: css; title: ;">li {
	padding: 8px 12px;
}</pre>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/step4.gif" rel="lightbox[25]"><img class="aligncenter size-full wp-image-77" title="step4" src="http://skylermedia.com/wp-content/uploads/2010/06/step4.gif" alt="" width="200" height="180" /></a></p>
<p>That&#8217;s looking really good and is actually the final version for IE7 &amp; IE8 (with regards to the hover). But for browsers that support <a href="http://www.the-art-of-web.com/css/border-radius/">CSS3&#8242;s border radius</a>, they will get the CSS powered prettiness. This looks like a lot of CSS, but it CSS3 is not a full standard yet, so we have to use the browser extensions for the elements.</p>
<pre class="brush: css; title: ;">li:first-child {
	border-radius: 10px 10px 0 0 ;
	-moz-border-radius: 10px 10px 0 0 ;
	-webkit-border-radius: 10px 10px 0 0 ;
}
li:last-child {
	border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	-webkit-border-radius: 0 0 10px 10px;
}</pre>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/step5.gif" rel="lightbox[25]"><img class="aligncenter size-full wp-image-78" title="step5" src="http://skylermedia.com/wp-content/uploads/2010/06/step5.gif" alt="" width="200" height="180" /></a></p>
<p>You may be asking yourself, &#8220;Why not use images?&#8221; You are more than welcome to, but I agree with Paul over at Boag in this video he posted about the topic.</p>
<p>Finally we add a hover effect to the items to make them stand out when you mouse over</p>
<pre class="brush: css; title: ;">li:hover {
	cursor: pointer;
	background-color: #f7f7ff;
}</pre>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/step6.gif" rel="lightbox[25]"><img class="aligncenter size-full wp-image-79" title="step6" src="http://skylermedia.com/wp-content/uploads/2010/06/step6.gif" alt="" width="200" height="180" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://skylermedia.com/2010/06/11/rounded-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Rebirth</title>
		<link>http://skylermedia.com/2010/06/10/the-rebirth/</link>
		<comments>http://skylermedia.com/2010/06/10/the-rebirth/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 04:19:55 +0000</pubDate>
		<dc:creator>apipkin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://sm.local:8080/?p=5</guid>
		<description><![CDATA[For those of you who don’t know, this May marked the 2nd year of Skyler Media as a company. I have been working in web development since 2005 and writing code since 1999. Although it seems only yesterday I discovered, &#8230; <a href="http://skylermedia.com/2010/06/10/the-rebirth/">Continue reading <span class="meta-nav">&#8674;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For those of you who don’t know, this May marked the 2<sup>nd</sup> year of Skyler Media as a company. I have been working in web development since 2005 and writing code since 1999. Although it seems only yesterday I discovered, thanks to one, Lee Mobley, that you could save a file in notepad as an HTML page; a feat which I would later point to and say, &#8220;this is how it all started.&#8221;</p>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/logo_name_white.jpg" rel="lightbox[5]"><img class="aligncenter size-full wp-image-8" title="logo_name_white" src="http://skylermedia.com/wp-content/uploads/2010/06/logo_name_white.jpg" alt="" width="510" height="220" /></a>Skyler Media&#8217;s first logo was one I created around 2004. It looked sorta like a sun and sorta like a flower, sorta geometric and sorta abstract. You could say it was &#8220;sorta&#8221; undefined, as was Skyler Media at this point. I knew I wanted to build hand coded web sites, but I wasn’t sure what I wanted them to be like or how they should feel.</p>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/concept2.jpg" rel="lightbox[5]"><img class="aligncenter size-full wp-image-65" title="concept2" src="http://skylermedia.com/wp-content/uploads/2010/06/concept2.jpg" alt="" width="549" height="275" /></a>After a few months, I was brought on as the sole developer for <a href="http://purewebedevelopment.com">Pure Web Development </a>and was forced to put my big boy shoes on and learn how to build real web sites, for real clients. It was a busy two years with many sleepless nights. Sadly, my time there ended and I thought it would be a good time to get Skyler Media up and running. For some odd reason the old logo was not cooperating and I tried my hand at redesigning it again and was completely unsuccessful.</p>
<p style="text-align: left;"><a href="http://skylermedia.com/wp-content/uploads/2010/06/sky_blue1.jpg" rel="lightbox[5]"><img class="size-full wp-image-61 aligncenter" title="Print" src="http://skylermedia.com/wp-content/uploads/2010/06/sky_blue1.jpg" alt="" width="200" height="137" /></a>So I borrowed some time from a <a href="http://www.digitalcoffee.biz">friend of a friend</a> and he came up with the idea of using a bird. The logo and the font worked really well together, so we were all very excited about the new look. Little did we know Twitter was going to take off like wild fire and consume any illustrated bird in their path. After being bombarded with questions about our affiliation with Twitter and if we &#8220;stole&#8221; their logo, I decided it was about time to work on something that would help us stand out.</p>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/sketches.jpg" rel="lightbox[5]"><img class="aligncenter size-full wp-image-63" title="sketches" src="http://skylermedia.com/wp-content/uploads/2010/06/sketches.jpg" alt="" width="537" height="235" /></a>A few months later I met a very <a href="http://www.elizabethdaniell.com/">talented designer</a> on Twitter of all places. After a few meetings and client discovery, she sent over a few sketches. We mulled over them for several weeks before sending feedback. We ended up combining a few of the concepts and came up with something pretty solid with which to work. Once a mark was decided upon, we started work on the business card and letterhead designs.</p>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/concept.jpg" rel="lightbox[5]"><img class="aligncenter size-full wp-image-64" title="concept" src="http://skylermedia.com/wp-content/uploads/2010/06/concept.jpg" alt="" width="544" height="372" /></a>All the work at this point was created in black and white so we could focus on the design. The color selection took a little while because we have five different divisions Beth had to work into the brand using different colors. Regardless the challenges, it didn’t take long before we had a completed brand package and felt it was time to release ourselves into the internets focusing on web application development.</p>
<p><a href="http://skylermedia.com/wp-content/uploads/2010/06/new.jpg" rel="lightbox[5]"><img class="aligncenter size-full wp-image-66" title="new" src="http://skylermedia.com/wp-content/uploads/2010/06/new.jpg" alt="" width="500" height="253" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://skylermedia.com/2010/06/10/the-rebirth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

