<?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>Isaac Keyet &#187; CSS</title>
	<atom:link href="http://www.isaackeyet.com/blog/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.isaackeyet.com/blog</link>
	<description>Design, and more</description>
	<lastBuildDate>Mon, 26 Apr 2010 03:01:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New, flashy user menus for IntenseDebate!</title>
		<link>http://www.isaackeyet.com/blog/2009/new-flashy-user-menus-for-intensedebate/</link>
		<comments>http://www.isaackeyet.com/blog/2009/new-flashy-user-menus-for-intensedebate/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 22:43:42 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=116</guid>
		<description><![CDATA[A few days ago we went live with some new user menus for the IntenseDebate plugin. I&#8217;ve made the design of course, and while they&#8217;re meant to resemble the looks of the old menus in a lot of ways, there are some notable differences. The most striking change is of course the avatar being a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2009/04/idc-newavatarmenu09.jpg" alt="User menu design for IntenseDebate by Isaac Keyet" title="idc-newavatarmenu09" width="362" height="303" class="alignright size-full wp-image-115" />A few days ago we went live with some new user menus for the IntenseDebate plugin. I&#8217;ve made the design of course, and while they&#8217;re meant to resemble the looks of the old menus in a lot of ways, there are some notable differences. The most striking change is of course the avatar being a part of the popup as this was not the case before. An enlarged avatar gives the reader a more personal and complete insight in a user profile.</p>
<p>The goal for the redesign was to remove non-vital elements from the menu, items that you&#8217;re probably not interested in until you know the other stuff anyway. It now shows the username in large letters, along with the reputation meter. If you have enabled your latest twitter messages, and have a description as well, now both will show &#8211; not one or the other like it was before. This is true for the IntenseDebate.com profile as well.</p>
<p>Of course I&#8217;m going for pixel-perfect, clean, and with fancy effects once you notice them. Hint: The &#8220;border&#8221; around the avatar is actually a semi-transparent sweet-looking box, and all buttons have fancy :hover and :active effects. All in a single CSS sprite of course. Hope you like it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2009/new-flashy-user-menus-for-intensedebate/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Spices for modern browsers: border-radius, box-shadow and text-shadow</title>
		<link>http://www.isaackeyet.com/blog/2008/spices-for-modern-browsers-border-radius-box-shadow-and-text-shadow/</link>
		<comments>http://www.isaackeyet.com/blog/2008/spices-for-modern-browsers-border-radius-box-shadow-and-text-shadow/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 14:15:21 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=97</guid>
		<description><![CDATA[While updating the blog I remembered what Matt Thomas mentioned a while ago: I like to give people using modern browsers a little something extra to reward them. Not a direct quote, but that was the idea.
There are a few very interesting CSS3 rules that only a select few of the web browsers have yet [...]]]></description>
			<content:encoded><![CDATA[<p>While updating the blog I remembered what <a href="http://iammattthomas.com/" target="_blank">Matt Thomas</a> mentioned a while ago: <q>I like to give people using modern browsers a little something extra to reward them</q>. Not a direct quote, but that was the idea.</p>
<p>There are a few very interesting CSS3 rules that only a select few of the web browsers have yet implemented. The more interesting for pure text/box styling in my mind are <code>border-radius</code>, <code>box-shadow</code>, and <code>text-shadow</code>.</p>
<p><strong>Remember:</strong> Only use these properties to spice up your design, don&#8217;t rely on them for your visual appearance as they&#8217;re unsupported by a large majority still.</p>
<div class="box">
<h4>Border-Radius</h4>
<p>Border-radius applies nicely rounded corners to any block level element (such as a <code>&lt;div&gt;</code>). The syntax is really straight-forward:</p>
<blockquote><p><code>.className {<br />
border-radius: 5px;<br />
}</code></p></blockquote>
<p>&#8230;Where <code>5px</code> defines the size of the rounded corners.</p>
<h5>Browser support</h5>
<p>Border-radius is actually pretty well supported by many of the major browsers. For most, it&#8217;s a &#8220;beta&#8221; feature though, and so you&#8217;ll have to use multiple lines of CSS to make it work in all browsers that supports it.</p>
<blockquote><p><code>.className {<br />
/* Rounded corners in most browsers! */<br />
-moz-border-radius: 5px; /* For Mozilla Firefox */<br />
-khtml-border-radius: 5px; /* For Konqueror */<br />
-webkit-border-radius: 5px; /* For Safari */<br />
border-radius: 5px; /* For future native implementations */<br />
}</code></p></blockquote>
<h5>Border-Radius Example</h5>
<p><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2008/12/border-radius_example.png" alt="" title="border-radius_example" width="221" height="55" class="alignnone size-full wp-image-100 screenshot" /></p>
<p>This is what a box with rounded corners would look like in Firefox. The light grey brown box that&#8217;s wrapping this guide also has the border-radius rule applied to it, so you can check it out yourself in Firefox 3.x, Safari 3.x or Konqueror to see it in action!
</p></div>
<div class="box">
<h4>Box-Shadow</h4>
<p>Box-shadow creates a drop shadow for a given block-level element (such as a <code>&lt;div&gt;</code>). The syntax is as follows:</p>
<blockquote><p><code>.className {<br />
box-shadow: 1px 2px 3px #666;<br />
}</code></p></blockquote>
<p>The first two values, <code>1px 2px</code> define where the shadow should appear in X and Y coordinates. So 1px tells the browser to render the shadow 1px from the left side of the object, and 2px tells it to render it 2px below.</p>
<p>The third value, <code>3px</code> sets the blur level of the shadow.</p>
<p>The last value, <code>#666</code> simply defines the shadow&#8217;s color.</p>
<h5>Browser support</h5>
<p>Unfortunately, box-shadow is unsupported by most browsers out there today. To my knowledge, only Safari 3 support it, but you have to use experimental code. To kick box-shadow in for Safari, try this:</p>
<blockquote><p><code>.className {<br />
-webkit-box-shadow: 1px 2px 3px #666;<br />
}</code></p></blockquote>
<h5>Box-Shadow Example</h5>
<p><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2008/12/webkit-box-shadow_example.png" alt="" title="webkit-box-shadow_example" width="221" height="71" class="alignnone size-full wp-image-98 screenshot" /></p>
<p>You can also look at the light brown box that is wrapping this guide in Safari 3 or greater to see the box-shadow in action.
</p></div>
<div class="box">
<h4>Text-Shadow</h4>
<p>Text-shadow creates a drop shadow for any text, but is practically better used for headers (such as a <code>&lt;h3&gt;</code>). The syntax is the exact same as for the box-shadow property:</p>
<blockquote><p><code>.className {<br />
text-shadow: 1px 2px 3px #666;<br />
}</code></p></blockquote>
<p>The first two values, <code>1px 2px</code> define where the shadow should appear in X and Y coordinates. So 1px tells the browser to render the shadow 1px from the left side of the object, and 2px tells it to render it 2px below.</p>
<p>The third value, <code>3px</code> sets the blur level of the shadow.</p>
<p>The last value, <code>#666</code> simply defines the shadow&#8217;s color.</p>
<h5>Browser support</h5>
<p>Text-shadow is supported natively by Safari, but unsupported by every other major browser (not even in experimental properties).</p>
<h5>Text-Shadow Example</h5>
<p><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2008/12/text-shadow_example.png" alt="" title="text-shadow_example" width="218" height="56" class="alignnone size-full wp-image-99 screenshot" /></p>
<p>This is a screenshot of what the title of this Text-Shadow guide looks like in Safari.
</p></div>
<h4>Links of interest on CSS3</h4>
<ul>
<li><a href="http://www.css3.info/border-radius-apple-vs-mozilla/" target="_blank">CSS3.info</a> &#8211; &#8220;All you ever needed to know about CSS3&#8243;</li>
<li><a href="http://css-tricks.com/" target="_blank">CSS-Tricks</a> &#8211; Good source for tutorials, news, tips and tricks on using CSS.</a></li>
<li><a href="http://www.456bereastreet.com/" target="_blank">456 Berea Street</a> &#8211; Writes about web standards and general tips for designers/developers.</li>
</ul>
<p>Hope you enjoyed this guide. Now get coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2008/spices-for-modern-browsers-border-radius-box-shadow-and-text-shadow/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Tips on Using the Outline CSS Property</title>
		<link>http://www.isaackeyet.com/blog/2008/tips-on-using-the-outline-css-property/</link>
		<comments>http://www.isaackeyet.com/blog/2008/tips-on-using-the-outline-css-property/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 04:35:03 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Bugtracking]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=72</guid>
		<description><![CDATA[Part 2 out of 2 (Part 1)
The only time a web designer notices the Outline property is when you want to disable it, and you&#8217;re wondering how to do so or if it&#8217;s even possible. But you can actually use the property to do very clever things.
At a first glance, the Border and the Outline [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Part 2 out of 2</strong> (<a href="http://www.isaackeyet.com/blog/2008/how-to-disable-the-dotted-border-around-clicked-text-links/">Part 1</a>)</p>
<p>The only time a web designer notices the Outline property is when you want to disable it, and you&#8217;re wondering how to do so or if it&#8217;s even possible. But you can actually use the property to do very clever things.</p>
<p>At a first glance, the Border and the Outline property look very much alike. They share the same rule structure, and they both put a border around any object you want. But there are two fundamental differences.</p>
<p>1. When the browser calculates the width of a floated object, it takes into account <strong>Width, Padding and Border</strong>.</p>
<p><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2008/04/border-outline1.png" alt="" title="border-outline1" width="482" height="196" class="alignnone size-full wp-image-73" /></p>
<p>Notice how setting a border <strong>adds</strong> to the total width, while the outline doesn&#8217;t.</p>
<p>2. Since borders take up space, you can have problem aligning elements on a webpage using borders. However if you use an outline instead, the &#8220;border&#8221; will just be a layer on top of the image and won&#8217;t push your element anywhere. Notice how the second image&#8217;s inside border still lines up with the text.</p>
<p><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2008/04/border-outline2.png" alt="" title="border-outline2" width="407" height="255" class="alignnone size-full wp-image-74" /></p>
<p>This is very useful for registration processes, if you want to show a field that needs to be corrected: Instead of applying a border and having the textfield move X amount of pixels horizontally you can apply an outline!</p>
<p><strong>How to use Outline, examples</strong></p>
<p class="code">
Example:<br />
.classNameHere {<br />
outline: 1px solid #000000;<br />
}<br />
Example 2:<br />
.classNameHere {<br />
outline: 2px dotted #FF66CC;<br />
}
</p>
<p>I hope you enjoyed this little introduction to the Outline CSS property!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2008/tips-on-using-the-outline-css-property/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Check out my MyBlogLog iPhone!</title>
		<link>http://www.isaackeyet.com/blog/2008/check-out-my-mybloglog-iphone/</link>
		<comments>http://www.isaackeyet.com/blog/2008/check-out-my-mybloglog-iphone/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 05:01:16 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/2008/check-out-my-mybloglog-iphone/</guid>
		<description><![CDATA[I just got done with it, and it&#8217;s just for fun. If you look in this blog&#8217;s sidebar you&#8217;ll see a shiny iPhone with my latest visitors in it.
The reason I did it was just because the new MBL widget looks so much like an iPhone. Especially if you&#8217;re using a black and white color [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.isaackeyet.com/blog/wp-content/uploads/2008/03/mbl-iphone1.jpg' alt='mbl-iphone1.jpg' class="imgx" />I just got done with it, and it&#8217;s just for fun. If you look in this blog&#8217;s sidebar you&#8217;ll see a shiny iPhone with my latest visitors in it.</p>
<p>The reason I did it was just because the new MBL widget looks so much like an iPhone. Especially if you&#8217;re using a black and white color scheme for it, which I did. Anyway, I hope you like it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2008/check-out-my-mybloglog-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get perfect Web 2.0 16&#215;16px icons quickly!</title>
		<link>http://www.isaackeyet.com/blog/2008/get-perfect-web-20-16x16px-icons-quickly/</link>
		<comments>http://www.isaackeyet.com/blog/2008/get-perfect-web-20-16x16px-icons-quickly/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 01:13:38 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/2008/get-perfect-web-20-16x16px-icons-quickly/</guid>
		<description><![CDATA[Recently I faced the problem of either creating my own 16 square pixel icons, or use others. I started looking into how other services have solved the problem, and I realized after looking at Socialthing! that the best solution is also the most obvious and simple one: Just import the site&#8217;s own favicons!
Here are some [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I faced the problem of either creating my own 16 square pixel icons, or use others. I started looking into how other services have solved the problem, and I realized after looking at <a href="http://www.socialthing.com">Socialthing!</a> that the best solution is also the most obvious and simple one: Just import the site&#8217;s own <span class="tooltip" title="A favicon is that little picture next to the URL in the adress field in the top of your browser">favicons</span>!</p>
<p>Here are some examples of great 16&#215;16 icons from well known sites:</p>
<ul>
<li>Facebook: <img src="http://www.facebook.com/favicon.ico" alt="favicon" /></li>
<li>Last.fm: <img src="http://www.last.fm/favicon.ico" alt="favicon" /></li>
<li>CNN: <img src="http://www.cnn.com/favicon.ico" alt="favicon" width="16" height="16" /></li>
<li>Yahoo!: <img src="http://www.yahoo.com/favicon.ico" alt="favicon" /></li>
<li>Twitter: <img src="http://www.twitter.com/favicon.ico" alt="favicon" /></li>
</ul>
<p>Almost all bigger sites out there have a favicon, so to find and download an icon just do the following:</p>
<ol>
<li>Enter root web adress in your browsers adress field: http://www.sitename.com</li>
<li>Apply <strong>/favicon.ico</strong> to the adress, like so: http://www.sitename.com/favicon.ico</li>
<li>Hit Enter to go to the adress, and there you are. This is the perfect 16px icon for the website you&#8217;ve entered!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2008/get-perfect-web-20-16x16px-icons-quickly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pure CSS animated menu</title>
		<link>http://www.isaackeyet.com/blog/2007/pure-css-animated-menu/</link>
		<comments>http://www.isaackeyet.com/blog/2007/pure-css-animated-menu/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 00:49:49 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/2007/pure-css-animated-menu/</guid>
		<description><![CDATA[I&#8217;ve had this idea for a long time, to create a menu that would look animated but still being all CSS. The trick is to use the movement of the mouse over different objects to trigger other elements to change. Thanks to normal child selectors, nested elements and some padding animation is actually possible. The [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had this idea for a long time, to create a menu that would look animated but still being all CSS. The trick is to use the movement of the mouse over different objects to trigger other elements to change. Thanks to normal child selectors, nested elements and some padding animation is actually possible. The theory behind this is that the 1st element sets the size of the visible menu item, the 2nd changes this to a higher value, and so forth. You can also put in color changes and whatever else CSS you might want!</p>
<p>This is just a proof of concept, and I have no idea if it actually works in all browsers. I&#8217;ve developed this little example for Firefox 2. Mouse over the menu <strong>slowly</strong> and see what happens&#8230;</p>
<p><iframe src="http://isaackeyet.com/material/test/menu/index.htm" width="500" height="80"></iframe></p>
<p>Confusing? I put in some borders in the example below, in an attempt to show off the theory behind it..</p>
<p><iframe src="http://isaackeyet.com/material/test/menu2/index.htm" width="500" height="100"></iframe></p>
<p>Hope you like it <img src='http://www.isaackeyet.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2007/pure-css-animated-menu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>border: 1px solid; magic!</title>
		<link>http://www.isaackeyet.com/blog/2007/border-1px-solid-magic/</link>
		<comments>http://www.isaackeyet.com/blog/2007/border-1px-solid-magic/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 02:26:07 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/2007/border-1px-solid-magic/</guid>
		<description><![CDATA[I don&#8217;t know if this is common knowledge among webdesigners, but this was all new for me. If you don&#8217;t select a color for a border, just say &#8220;border: 1px solid;&#8221; (for example) it will inherit the color of the current object. I&#8217;ve checked this in Firefox 2 and Opera 9, and it really works [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if this is common knowledge among webdesigners, but this was all new for me. If you don&#8217;t select a color for a border, just say &#8220;border: 1px solid;&#8221; (for example) it will inherit the color of the current object. I&#8217;ve checked this in Firefox 2 and Opera 9, and it really works here.</p>
<p>Very interesting, at least I think so..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2007/border-1px-solid-magic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
