<?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>CssTemplateHeaven &#187; css3</title>
	<atom:link href="http://www.csstemplateheaven.com/tag/css3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csstemplateheaven.com</link>
	<description></description>
	<lastBuildDate>Mon, 06 Sep 2010 08:46:14 +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>Funky CSS3 Layout without divs</title>
		<link>http://www.csstemplateheaven.com/html5-and-css3-templates/funky-css3-layout-without-divs/</link>
		<comments>http://www.csstemplateheaven.com/html5-and-css3-templates/funky-css3-layout-without-divs/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 09:15:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html5 and Css3 templates]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[no divs]]></category>

		<guid isPermaLink="false">http://www.csstemplateheaven.com/?p=356</guid>
		<description><![CDATA[This is a simple one column template. It has some fancy CSS3 features for browsers that support that and it dosen&#8217;t have a single div, just super clean semantic html. Only one image is used (0.1 kb) and the colors are in vintage style.]]></description>
			<content:encoded><![CDATA[<p>This is a simple one column template. It has some fancy CSS3 features for browsers that support that and it dosen&#8217;t have a single div, just super clean semantic html. Only one image is used (0.1 kb) and the colors are in vintage style.</p>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://www.csstemplateheaven.com/html5-and-css3-templates/funky-css3-layout-without-divs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pure CSS3 Logo</title>
		<link>http://www.csstemplateheaven.com/articlestutorials/pure-css3-logo/</link>
		<comments>http://www.csstemplateheaven.com/articlestutorials/pure-css3-logo/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 23:53:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles/Tutorials]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.csstemplateheaven.com/?p=349</guid>
		<description><![CDATA[There are a lot of cool features in CSS3 and in this example I am going to show you how you can create a decent header with a logo using only H1 and CSS. There are four features we are going to use: Rounded Corners Box Shadow Text Shadow Gradients Unfortunately IE does not support [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of cool features in CSS3 and in this example I am going to show you how you can create a decent header with a logo using only H1 and CSS. There are four features we are going to use:</p>
<ul>
<li>Rounded Corners</li>
<li>Box Shadow</li>
<li>Text Shadow</li>
<li>Gradients</li>
</ul>
<p>Unfortunately IE does not support any of these yet, but it looks very nice in FireFox and other good browsers supporting CSS3. Take a look at <a title="css3 logo example" href="http://www.csstemplateheaven.com/demo/css3/logo/css3_logo.html"><strong>this example</strong></a> (right click to view the source code)</p>
<p>As you can see we have only used the h1 with two span tags. The first thing we can look at is the rounded corners (a really great feature).</p>
<blockquote><p>-moz-border-radius: 8px;<br />
-webkit-border-radius: 8px;</p></blockquote>
<p>(Moz is for mozilla (FireFox) while webkit is for Chrome and Safari)</p>
<p>We have set the radius to 8px for our header, this gives us some nice rounded corners. Then we need to create a drop shadow, this is done with box shadow like this:</p>
<blockquote><p>box-shadow: #333 10px 10px 10px;<br />
-moz-box-shadow: #333 10px 10px 10px;<br />
-webkit-box-shadow: #333 10px 10px 10px;</p></blockquote>
<p>As you can see there are four different values here. The first is the color and the three others are the size and position of our shadow. Change the different values to see how it affects the shadow.</p>
<p>That&#8217;s the CSS3 stuff we need for our main header. Now we are going to create the logo inside the header. We do this by adding two span tags which wrap around &#8220;css3&#8243; and &#8220;logo&#8221;</p>
<p>On the css id we only need rouned corners on the left top and left bottom like this:</p>
<blockquote><p>-moz-border-radius-topleft: 10px;<br />
-moz-border-radius-bottomleft: 10px;<br />
-webkit-border-top-left-radius: 10px;<br />
-webkit-border-bottom-left-radius: 10px;</p></blockquote>
<p>To create the gradient background we need to add this:</p>
<blockquote><p>background:-moz-linear-gradient(-90deg, #fde98d, #f9cd0a) repeat scroll 0 0 transparent;<br />
background:-webkit-gradient(linear, left top, left bottom, from(#fde98d), to(#f9cd0a));</p></blockquote>
<p>The first color is the top while the second is the bottom. Change the colors to see the effect. As you can see you can change the gradient style as well (-90deg and linear. try change the values to see the effect).</p>
<p>The final thing we need to add is the text shadow:</p>
<blockquote><p>text-shadow: 0 1px 0 #fbf0c3;</p></blockquote>
<p>This works pretty much like the box shadow and you can try to change the values to see how it works.</p>
<p>To create the logo span just use the same code with different values. That&#8217;s all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.csstemplateheaven.com/articlestutorials/pure-css3-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: www.csstemplateheaven.com @ 2010-09-10 19:06:58 -->