<?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>Antidecaf &#187; web design</title>
	<atom:link href="http://antidecaf.com/tag/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://antidecaf.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 12 Feb 2011 20:04:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Radioactive buttons</title>
		<link>http://antidecaf.com/2011/01/radioactive-buttons/</link>
		<comments>http://antidecaf.com/2011/01/radioactive-buttons/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 19:43:35 +0000</pubDate>
		<dc:creator>antidecaf</dc:creator>
				<category><![CDATA[Standards]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://antidecaf.com/?p=242</guid>
		<description><![CDATA[CSS3 has given us a number of new tools to make beautiful, responsive and interactive web experiences. Among the improvements are CSS animations, which allow us to animate elements without having to turn to flash or javascript.

Here's a quick look at how to make an animated radioactive button, using only CSS3 and the necessary markup.]]></description>
			<content:encoded><![CDATA[<p>CSS3 has given us a number of new tools to make beautiful, responsive and interactive web experiences. Among the improvements are CSS animations, which allow us to animate elements without having to turn to flash or javascript.</p>
<p>Here&#8217;s a quick look at how to make a radioactive button like this one (if you&#8217;re viewing this page in Safari, Chrome or another webkit browser), using only CSS3 and the necessary markup:</p>
<p><button class="demo">Submit</button></p>
<p><span id="more-242"></span><br />
First, the necessary markup. The styles can of course be applied to any layout element, but for the sake of the example, I&#8217;ll make a button using HTML5&#8242;s new <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-button-element.html">button</a> element:</p>
<pre><code>&lt;button&gt;Submit&lt;/button&gt;</code></pre>
<p>Now, let&#8217;s apply some basic styling to the button, to make it look at least halfway decent to begin with.</p>
<pre><code>button {
    font-size:150%;
    padding:10px 20px;
    cursor:pointer;
    text-shadow:#fff 1px 1px 0;
    border:1px solid #aaa;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
    background:#92d46a;
    background:-webkit-gradient(
		linear, left top, left bottom,
		from(#92d46a), to(#dcf9ca)
		);
    background:-moz-linear-gradient(
		top, #92d46a, #dcf9ca
		);
    filter:progid:DXImageTransform.Microsoft.gradient(
		startColorstr='#92d46a',
		endColorstr='#dcf9ca'
		);
}
</code></pre>
<p>Here&#8217;s our basic button. Apart from the usual values, I&#8217;ve added a <a href="http://www.webdesignerwall.com/tutorials/cross-browser-css-gradient/">cross browser gradient background</a>, and rounded corners using <a href="http://www.css3.info/preview/rounded-border/">border-radius</a>.</p>
<p>Now let&#8217;s have a look at the animation. Note: This is currently supported only by webkit browsers, i.e. Safari, Chrome and <a href="http://www.quirksmode.org/blog/archives/2010/12/list_of_webkitb.html">some others</a>. This also goes into the button styling:</p>
<pre><code>    -webkit-animation-name: breathe;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-timing-function: ease;
</code></pre>
<p>First, we&#8217;re giving our animation a name. I&#8217;m calling it <em>breathe</em>, because that&#8217;s what the button is supposed to look like it&#8217;s doing. Next, I set the duration of the animation to <em>3s</em> (3 seconds), and the iteration-count to <em>infinite</em>. This makes an animation that lasts for 3 seconds, and repeats itself infinitely. For more about how to animate elements, check out these articles: <a href="http://css3.bradshawenterprises.com/">Using CSS3 Transitions, Transforms and Animation</a>, <a href="http://www.the-art-of-web.com/css/timing-function/">CSS: Transition Timing Functions</a>.</p>
<p>Now that the button has been assigned to an animation, let&#8217;s make the animation itself. I&#8217;m using <a href="http://webkit.org/blog/324/css-animation-2/">webkit-keyframes</a> to determine what the element should look like at 0%, 50% and 100% into the animation.</p>
<pre><code>@-webkit-keyframes breathe {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -webkit-box-shadow:0 0 30px rgba(96, 255, 0, 1);
    }
    50% {
        opacity: 0.7;
        -webkit-transform: scale(0.9);
        -webkit-box-shadow:0 0 5px rgba(96, 255, 0, 0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -webkit-box-shadow:0 0 30px rgba(96, 255, 0, 1);
    }
}</code></pre>
<p>At 0%, the button is basically what it was before, with the exception of a box-shadow. I&#8217;ve added a green, toxic looking <a href="http://www.css3.info/preview/box-shadow/">box-shadow</a> using <a href="http://www.css3.info/preview/rgba/">rgba</a> to be able to alter the opacity of it. At 50%, the box-shadow has 50% opacity. The blur size has been reduced from 30px to 5px, making the shadow look as if it breathes. To make to button itself breathe, I&#8217;ve reduced it&#8217;s size to 90% of itself using <a href="http://www.zenelements.com/blog/css3-transform/">transform: scale</a>. At 100%, all properties are the same as at 0%, giving the animation a smooth rythm.</p>
<p>Finally, I&#8217;ll add something to the buttons hover state to make it feel more responsive.</p>
<pre><code>button:hover {
    color:#236baf;
    background:#92d46a;
    background:-webkit-gradient(
		linear, left top, left bottom,
		from(#dcf9ca),
		to(#92d46a)
		);
    background:-moz-linear-gradient(
		top,
		#dcf9ca,
		#92d46a
		);
    filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr='#dcf9ca',
		endColorstr='#92d46a'
		);
	-webkit-animation-name: none;
	-webkit-box-shadow:0 0 30px rgba(96, 255, 0, 1);
}</code></pre>
<p>Here, the background gradient has been switched from top to bottom. I&#8217;ve also stopped the animation, by setting <em>-webkit-animation-name</em> to <em>none</em>.</p>
<p>And that&#8217;s it. <a href="http://antidecaf.com/demos/radioactive/">Take a look at the demo</a> to see the final result.</p>
]]></content:encoded>
			<wfw:commentRss>http://antidecaf.com/2011/01/radioactive-buttons/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>15 clever and beautiful tiled backgrounds</title>
		<link>http://antidecaf.com/2009/05/15-clever-and-beautiful-tiled-backgrounds/</link>
		<comments>http://antidecaf.com/2009/05/15-clever-and-beautiful-tiled-backgrounds/#comments</comments>
		<pubDate>Wed, 13 May 2009 18:12:33 +0000</pubDate>
		<dc:creator>antidecaf</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[texture]]></category>
		<category><![CDATA[tiles]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.antidecaf.com/?p=86</guid>
		<description><![CDATA[Using a tiled background image is a simple and effective way setting a specific mood throughout a website or simply decorating what would otherwise be unused whitespace. It is a trend that has survived numerous death sentences, and is still being reinvented by many designers today.]]></description>
			<content:encoded><![CDATA[<p>Using a tiled background image is a simple and effective way setting a specific mood throughout a website or simply decorating what would otherwise be unused whitespace. It is a trend that has survived numerous death sentences, and is still being reinvented by many designers today.</p>
<p><span id="more-86"></span></p>
<p style="text-align: left;"><a href="http://ut.no"><img class="aligncenter size-full wp-image-149" title="UT.no" src="http://antidecaf.com/wp-content/uploads/2009/05/ut-no.jpg" alt="ut-no" width="400" height="120" /></a><a href="http://ut.no">UT.no</a> is a soon to be released portal for hikers and other nature lovers.  The genius responsible for their graphic design has incorporated a (<a href="http://www.istockphoto.com/file_closeup.php?id=6012164">hand drawn!</a>) trekking map into the background. It may be the most appropriate and well executed tiled background I have ever seen.</p>
<p style="text-align: left;"><a href="http://www.deletelondon.com/"><img class="aligncenter size-full wp-image-141" title="DeleteLondon.com" src="http://antidecaf.com/wp-content/uploads/2009/05/deletelondon-com.jpg" alt="deletelondon-com" width="400" height="120" /></a>At <a href="http://www.deletelondon.com">DeleteLondon.com</a>, a set of randomized backgrounds add another dimension to the user experience. Many of the backgrounds I&#8217;ve seen while refreshing the site frantically look very good, too.</p>
<p style="text-align: left;"><a href="http://carlcartee.com"><img class="aligncenter size-full wp-image-139" title="Carl Cartee" src="http://antidecaf.com/wp-content/uploads/2009/05/carlcartee-com.jpg" alt="carlcartee-com" width="400" height="120" /></a>The wooden texture is used as a background in many websites. Because it works. <a href="http://carlcartee.com">CarlCartee.com</a> is a well executed example.</p>
<p style="text-align: left;"><a href="http://www.outlawdesignblog.com/"><img class="aligncenter size-full wp-image-146" title="Outlaw Design Blog" src="http://antidecaf.com/wp-content/uploads/2009/05/outlawdesignblog-com.jpg" alt="outlawdesignblog-com" width="400" height="120" /></a>Another example of a wooden texture background. At <a href="http://www.outlawdesignblog.com/">Outlaw Design Blog</a>, it&#8217;s more than just a background.</p>
<p style="text-align: left;"><a href="http://www.snook.ca/"><img class="aligncenter size-full wp-image-147" title="Snook.ca" src="http://antidecaf.com/wp-content/uploads/2009/05/snook-ca.jpg" alt="snook-ca" width="400" height="120" /></a>At <a href="http://snook.ca">Snook.ca</a>, curls are a key design element, being used in the header and footer as well as the subtle but beautiful background image.</p>
<p style="text-align: left;"><a href="http://www.bridge55.com/"><img class="aligncenter size-full wp-image-136" title="Bridge 55" src="http://antidecaf.com/wp-content/uploads/2009/05/bridge55-com.jpg" alt="bridge55-com" width="400" height="120" /></a>A concrete wall background at <a href="http://www.bridge55.com">Bridge55.com</a>.</p>
<p style="text-align: left;"><a href="http://www.colourpixel.com/"><img class="aligncenter size-full wp-image-140" title="Colour Pixel" src="http://antidecaf.com/wp-content/uploads/2009/05/colourpixel-com.jpg" alt="colourpixel-com" width="400" height="120" /></a>The background at <a href="http://www.colourpixel.com/">Colour Pixel</a> consists of, well, coloured pixels. Simple and brilliant.</p>
<p style="text-align: left;"><a href="http://www.frenzylabs.com/"><img class="aligncenter size-full wp-image-144" title="Frenzy Labs" src="http://antidecaf.com/wp-content/uploads/2009/05/frenzylabs-com.jpg" alt="frenzylabs-com" width="400" height="120" /></a>Pixels are the theme of the background at <a href="http://www.frenzylabs.com/">Frenzy Labs</a> as well.</p>
<p style="text-align: left;"><a href="http://www.carbonica.org/"><img class="aligncenter size-full wp-image-138" title="Carbonica" src="http://antidecaf.com/wp-content/uploads/2009/05/carbonica-org.jpg" alt="carbonica-org" width="400" height="120" /></a>Cardboard texture &#8211; Another appropriate background image seen at <a href="http://www.carbonica.org">Carbonica.org</a>.</p>
<p style="text-align: left;"><a href="http://www.brightcreative.com/"><img class="aligncenter size-full wp-image-137" title="Bright Creative" src="http://antidecaf.com/wp-content/uploads/2009/05/brightcreative-com.jpg" alt="brightcreative-com" width="400" height="120" /></a>Part abstract, part grunge style stains, part wallpaper, the background at <a href="http://www.brightcreative.com/">Bright Creative</a> seems to be many things. It most certainly is beautiful and decorative.</p>
<p style="text-align: left;"><a href="http://www.enlighten.co.nz/"><img class="aligncenter size-full wp-image-143" title="Enlighten Designs" src="http://antidecaf.com/wp-content/uploads/2009/05/enlighten-co-nz.jpg" alt="enlighten-co-nz" width="400" height="120" /></a>The subtle blue ornaments in the background at <a href="http://www.enlighten.co.nz/">Enlighten Designs</a> almost look like water.</p>
<p style="text-align: left;"><a href="http://ma.tt/"><img class="aligncenter size-full wp-image-145" title="Matt Mullenweg" src="http://antidecaf.com/wp-content/uploads/2009/05/ma-tt.jpg" alt="ma-tt" width="400" height="120" /></a><a href="http://ma.tt">Matt Mullenweg</a>&#8216;s site is an orgie of ridiculously good looking design elements, one of which is a grunge style splatter background.</p>
<p style="text-align: left;"><a href="http://www.designspongeonline.com/"><img class="aligncenter size-full wp-image-142" title="Design Sponge" src="http://antidecaf.com/wp-content/uploads/2009/05/designspongeonline-com.jpg" alt="designspongeonline-com" width="400" height="120" /></a>The background at <a href="http://www.designspongeonline.com/">Design Sponge</a> is some kind of fabric texture. Simple, subtle and neat.</p>
<p style="text-align: left;"><a href="http://youandigraphics.com/"><img class="aligncenter size-full wp-image-150" title="Youandigraphics.com" src="http://antidecaf.com/wp-content/uploads/2009/05/youandigraphics-com.jpg" alt="youandigraphics-com" width="400" height="120" /></a>Another example of a tiled background made from fabric texture at <a href="http://youandigraphics.com">Youandigraphics.com</a>.</p>
<p style="text-align: left;"><a href="http://stroybass.com/"><img class="aligncenter size-full wp-image-148" title="Stroybass.com" src="http://antidecaf.com/wp-content/uploads/2009/05/stroybass-com.jpg" alt="stroybass-com" width="400" height="120" /></a>Mosaic tiles make up the background at <a href="http://stroybass.com">Stroybass.com</a>. The gradient is also a nice touch that underlines the effect of being under water, like in their pools.</p>
]]></content:encoded>
			<wfw:commentRss>http://antidecaf.com/2009/05/15-clever-and-beautiful-tiled-backgrounds/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>5 great looking websites about beer</title>
		<link>http://antidecaf.com/2009/04/5-great-looking-websites-about-beer/</link>
		<comments>http://antidecaf.com/2009/04/5-great-looking-websites-about-beer/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 19:55:53 +0000</pubDate>
		<dc:creator>antidecaf</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.antidecaf.com/?p=73</guid>
		<description><![CDATA[Mmm, beer. Having showcased some neat coffee related websites, I figured I'd pay tribute to another one of my favorite beverages this time. It proved to be a bit harder than I expected.

While researching for this article, I found that quite a few of the big beer websites have some very annoying features. Many of them are so called interactive presentations entirely built in flash, they take a long time to load, and demand you type your date of birth before allowing you to enter. I don't know how that's going to keep underage visitors out, but it will certainly piss some older visitors off. The Corona website never finished loading. Guinness wouldn't let me in at all despite the fact that I'm 28 (and a half!) years old. In stead, they redirected me to The Century Council, an organization dedicated to eliminate drunk driving and underage drinking. Are they trying to insult me?

Fortunately, not all beer related websites are utter crap. Check out these 5 good looking counterparts.]]></description>
			<content:encoded><![CDATA[<p>Mmm, beer. Having showcased some neat coffee related websites, I figured I&#8217;d pay tribute to another one of my favorite beverages this time. It proved to be a bit harder than I expected.</p>
<p>While researching for this article, I found that quite a few of the big beer websites have some very annoying features. Many of them are so called interactive presentations entirely built in flash, they take a long time to load, and demand you <em>type</em> your date of birth before allowing you to enter. I don&#8217;t know how that&#8217;s going to keep underage visitors out, but it will certainly piss some older visitors off. The Corona website never finished loading. Guinness wouldn&#8217;t let me in at all despite the fact that I&#8217;m 28 (and a half!) years old. In stead, they redirected me to The Century Council, an organization dedicated to eliminate drunk driving and underage drinking. Are they trying to insult me?</p>
<p>Fortunately, not all beer related websites are utter crap. Check out these 5 good looking counterparts.</p>
<p><span id="more-73"></span><br />
<a href="http://www.brewdog.com/"><img class="aligncenter size-full wp-image-75" title="BrewDog Beer" src="http://antidecaf.com/wp-content/uploads/2009/04/brewdog.jpg" alt="BrewDog Beer" width="400" height="250" /></a></p>
<p><a href="http://www.birramoretti.it/"><img class="aligncenter size-full wp-image-74" title="Birra Moretti" src="http://antidecaf.com/wp-content/uploads/2009/04/birramoretti.jpg" alt="Birra Moretti" width="400" height="250" /></a></p>
<p><a href="http://www.greatdivide.com/"><img class="aligncenter size-full wp-image-76" title="Great Divide Brewing" src="http://antidecaf.com/wp-content/uploads/2009/04/greatdivide.jpg" alt="Great Divide Brewing" width="400" height="250" /></a></p>
<p><a href="http://www.macsbeer.com/"><img class="aligncenter size-full wp-image-77" title="MacTarnahan's Brewing Company" src="http://antidecaf.com/wp-content/uploads/2009/04/mactarnahans.jpg" alt="MacTarnahan's Brewing Company" width="400" height="250" /></a></p>
<p><a href="http://www.redstripe.net/"><img class="aligncenter size-full wp-image-78" title="Red Stripe" src="http://antidecaf.com/wp-content/uploads/2009/04/redstripe.jpg" alt="Red Stripe" width="400" height="250" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://antidecaf.com/2009/04/5-great-looking-websites-about-beer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>8 hot coffee inspired web designs</title>
		<link>http://antidecaf.com/2009/04/8-hot-coffee-inspired-web-designs/</link>
		<comments>http://antidecaf.com/2009/04/8-hot-coffee-inspired-web-designs/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 18:40:35 +0000</pubDate>
		<dc:creator>antidecaf</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.antidecaf.com/?p=57</guid>
		<description><![CDATA[As some of my visitors may have already figured out on their own, I love coffee. I also love web design, and as far as I'm concerned, the two subjects go hand in hand. While surfing for inspiration and refueling with fresh brewed coffee, I've come across these hot looking website designs inspired by, er, coffee.]]></description>
			<content:encoded><![CDATA[<p>As some of my visitors may have already figured out on their own, I love coffee. I also love web design, and as far as I&#8217;m concerned, the two subjects go hand in hand. While surfing for inspiration and refueling with fresh brewed coffee, I&#8217;ve come across these hot looking website designs inspired by, er, coffee.</p>
<p><span id="more-57"></span><br />
<a href="http://www.starbuckscoffeeathome.com/"><img class="aligncenter size-full wp-image-65" title="Starbucks Coffee At Home" src="http://antidecaf.com/wp-content/uploads/2009/04/starbucks.jpg" alt="Starbucks Coffee At Home" width="400" height="250" /></a></p>
<p><a href="http://www.carbongraffiti.com/clients/spinelli/"><img class="aligncenter size-full wp-image-64" title="Spinelli Coffee" src="http://antidecaf.com/wp-content/uploads/2009/04/spinelli.jpg" alt="Spinelli Coffee" width="400" height="250" /></a></p>
<p><a href="http://www.jwhanif.net/"><img class="aligncenter size-full wp-image-62" title="Junaid W. Hanif" src="http://antidecaf.com/wp-content/uploads/2009/04/junaid.jpg" alt="Junaid W. Hanif" width="400" height="250" /></a></p>
<p><a href="http://www.coffeeintown.com/"><img class="aligncenter size-full wp-image-61" title="Coffee in Town" src="http://antidecaf.com/wp-content/uploads/2009/04/coffeeintown.jpg" alt="Coffee in Town" width="400" height="250" /></a></p>
<p><a href="http://www.thebrewmag.com/"><img class="aligncenter size-full wp-image-58" title="The Brew Magazine" src="http://antidecaf.com/wp-content/uploads/2009/04/brewmag.jpg" alt="The Brew Magazine" width="400" height="250" /></a></p>
<p><a href="http://www.remedycoffee.com/"><img class="aligncenter size-full wp-image-63" title="Remedy Coffee" src="http://antidecaf.com/wp-content/uploads/2009/04/remedycoffee.jpg" alt="Remedy Coffee" width="400" height="250" /></a></p>
<p><a href="http://coffeenatic.com/"><img class="aligncenter size-full wp-image-60" title="Coffeenatic" src="http://antidecaf.com/wp-content/uploads/2009/04/coffeeinatic.jpg" alt="Coffeenatic" width="400" height="250" /></a></p>
<p><a href="http://www.coffeeteawine.com/"><img class="aligncenter size-full wp-image-59" title="The Coffee Café" src="http://antidecaf.com/wp-content/uploads/2009/04/coffeecafe.jpg" alt="The Coffee Café" width="400" height="250" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://antidecaf.com/2009/04/8-hot-coffee-inspired-web-designs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

