<?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>Kenneth D. Nordahl’s blog &#187; webkit</title>
	<atom:link href="http://blog.nordahl.me/tag/webkit/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nordahl.me</link>
	<description>blog</description>
	<lastBuildDate>Wed, 02 Jun 2010 07:59:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS3 Border-radius compliance</title>
		<link>http://blog.nordahl.me/news/css3-border-radius-compliance/</link>
		<comments>http://blog.nordahl.me/news/css3-border-radius-compliance/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 13:54:11 +0000</pubDate>
		<dc:creator>KDN</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[border-radius]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[moz]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.nordahl.me/?p=617</guid>
		<description><![CDATA[The latest version of the webkit nightly builds support the border-radius property (and -webkit-border-radius). It looks like CSS3 specifications for border-radius is going to be locked down soon. Here is a link to an article with an overview on how the browsers render the standard. 
]]></description>
			<content:encoded><![CDATA[<p>The latest version of the <a href="http://webkit.org/">webkit nightly builds</a> support the border-radius property (and -webkit-border-radius). It looks like CSS3 specifications for border-radius is going to be locked down soon. Here is a <a href="http://muddledramblings.com/table-of-css3-border-radius-compliance">link to an article</a> with an overview on how the browsers render the standard. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nordahl.me/news/css3-border-radius-compliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webkit gradients explained</title>
		<link>http://blog.nordahl.me/design/webdesign/webkit-gradients-explained/</link>
		<comments>http://blog.nordahl.me/design/webdesign/webkit-gradients-explained/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 12:38:46 +0000</pubDate>
		<dc:creator>KDN</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[gradient]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.nordahl.me/?p=419</guid>
		<description><![CDATA[As explained in my portfolio the idea behind this site, was to create a website without using any images for the design. If you are viewing this site with Safari or one of the nightly webkit builds you might notice the gradient in the header. That is what this article is about.
Example page
Linear gradient markup

background: [...]]]></description>
			<content:encoded><![CDATA[<p>As explained in my <a href="http://portfolio.nordahl.me">portfolio</a> the idea behind this site, was to create a website without using any images for the design. If you are viewing this site with Safari or one of the nightly webkit builds you might notice the gradient in the header. That is what this article is about.<br />
<a href="http://prototype.nordahl.me/example/cssgradients/"><span class="button">Example page</span></a></p>
<h5>Linear gradient markup</h5>
<pre class="brush: css;">
background: -webkit-gradient(
linear, /* Type of gradient */
0 0, /* Left-, top- position */
0% 100%, /* Left-, top- position */
from(rgb(0,0,255)), /* Starting color */
color-stop(0.7, orange), /* specifies the location of a gradient stop and the color it has */
 to(red)); /* end color */
</pre>
<h5>Radial gradient markup</h5>
<pre class="brush: css;">background: -webkit-gradient(
radial, /* Type of gradient */
150 80, /* center location of the center of the circle */
10, /* Size of the center of the circle */
120 80, /* center location of the outside of the circle */
130, /* Size of the center of the circle */
from(rgb(255,255,255)), /* Color to the center of the gradient */
color-stop(0.5, orange), /* specifies the location of a gradient stop and the color it has -&gt; I dont use it in my header. */
to(rgba(255,255,255, 0))); /* the end color */
</pre>
<p>As you can see in the header I don`t use the specified color-stop.</p>
<h5>Some notes</h5>
<ul>
<li>Location can be specified with a number and %</li>
<li>Color can be specified with color name, hex, rgb and rgba</li>
</ul>
<p>So whats the cool things you can do with this? </p>
<h5>Button with highlight and a hover effect.</h5>
<pre class="brush: css;">
.bevelandemboss{
width: 100px;
background:
-webkit-gradient(linear, 0 0, 0 100%, from(rgba(0,255,0,0.3)), to(rgba(0,255,0,1))),
-webkit-gradient(radial, 70 70, 10, 70 70, 80, from(rgba(255, 255, 255,0)), color-stop(0.8, rgba(255, 255, 255,4)), to(rgba(50, 255, 50, 0.7)));
-webkit-border-radius:10px;
color: #333;
font-size: 1.5em;
text-align: center;
text-shadow: 0 1px 0 white;
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.6);
}
.bevelandemboss:hover{
background:
-webkit-gradient(linear, 0 0, 0 100%, from(rgb(0,255,0)), color-stop(0.5, rgba(0,255,0,0.5)), to(green)),
-webkit-gradient(radial, 70 70, 10, 70 70, 80, from(rgba(255, 255, 255,0)), color-stop(0.8, rgba(255, 255, 255,4)), to(rgba(100, 255, 100, 0)));
cursor: pointer;
-webkit-box-shadow: 0 4px 4px rgba(0,0,0,0.4);
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.nordahl.me/design/webdesign/webkit-gradients-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
