<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="http://abduzeedo.com/taxonomy/term/6/all" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>css</title>
    <link>http://abduzeedo.com/taxonomy/term/6/all</link>
    <description></description>
    <language>en</language>
          <item>
    <title>Playing with CSS 3 - Animations, Rotate and Scale</title>
    <link>http://abduzeedo.com/playing-css-3-animations-rotate-and-scale</link>
    <description>&lt;h3&gt;I have been working on the new Abduzeedo design and have had the chance to play more with CSS 3, even though it&#039;s not fully supported on all browsers we can start using some really cool features such as round corners, text-shadow, box-shadow, transitions and transformations. The major downside still is Internet Explorer, however it seems that the IE 9 will have a much better CSS 3 support and support those features.&lt;/h3&gt;
&lt;p&gt;I believe that HTML 5 and CSS 3 will replace Flash eventually, and we can notice that the web design community has been talking a lot about it, &lt;a href=&quot;http://www.smashingmagazine.com/&quot;&gt;Smashingmagazine&lt;/a&gt;, one of the largest web design sites out there has been publishing great articles and even launched a &lt;a href=&quot;http://www.smashingmagazine.com/2010/06/18/css3-design-contest-join-in-and-win-ssd-hard-drive/&quot;&gt;CSS 3 contest&lt;/a&gt; to incetinve designer to play more with CSS 3.&lt;/p&gt;
&lt;p&gt;So in this post I will show you some experiments I&#039;ve been doing with CSS 3, especially with animations using transitions and transformations like scale and rotate.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;*The demo and code will only work with Webkit browsers like Safari and Chrome.&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;CSS Buttons and Thumbs&lt;/h2&gt;
&lt;p&gt;In this example I will show you how to create a really cool navigation bar using CSS only. I used  gradients, transitions and shadows. I also used a Flickr Javascript badge to load some images from Flickr and then use CSS transitions to scale up them when the user hovers an image.&lt;/p&gt;
&lt;h3&gt;HTML Code&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/css-tut/code.jpg&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;CSS for the Navigation Bar&lt;/h3&gt;
&lt;p&gt;For the navigation bar I used CSS to create the gradient, the syntax for the gradient in CSS is -webkit-gradient(&amp;lt;type&amp;gt;, &amp;lt;point&amp;gt; [, &amp;lt;radius&amp;gt;]?, &amp;lt;point&amp;gt; [, &amp;lt;radius&amp;gt;]? [, &amp;lt;stop&amp;gt;]*). For more information about CSS Gradients I recommend that you check out the &lt;a href=&quot;http://webkit.org&quot; title=&quot;http://webkit.org&quot;&gt;http://webkit.org&lt;/a&gt; website and this article in special &lt;a href=&quot;http://webkit.org/blog/175/introducing-css-gradients/&quot; title=&quot;http://webkit.org/blog/175/introducing-css-gradients/&quot;&gt;http://webkit.org/blog/175/introducing-css-gradients/&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;One site that is very useful to generate the CSS 3 codes is &lt;a href=&quot;http://css3generator.com/&quot; title=&quot;http://css3generator.com/&quot;&gt;http://css3generator.com/&lt;/a&gt; especially because of the extra code we have to add to support Mozilla and Opera.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/css-tut/nav-bar.jpg&quot; /&gt;&lt;/p&gt;
&lt;pre style=&quot;display:block; clear:both; &quot;&gt;
#menu{
	position: relative;
	display: block;
	margin: 20px auto;
	width: 600px;
	height: 60px;
	padding: 0 20px;
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(82,82,82)), color-stop(1, rgb(125,124,125)));
	-webkit-box-shadow:#000 0 1px 2px;
	-webkit-border-radius:2px;
}
&lt;/pre&gt;&lt;h3&gt;CSS for the Navigation Buttons&lt;/h3&gt;
&lt;p&gt;For the buttons once again I used CSS gradients once again and also Text-shadow, and CSS transition so when the user hovers the button the background color will change with an animation.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/css-tut/navigation.jpg&quot; /&gt;&lt;/p&gt;
&lt;pre style=&quot;display:block; clear:both; &quot;&gt;
ul li{
	list-style-type: none;
	margin: 15px 0;
	float: left;
	height: 30px;
	line-height: 30px;
}
ul li a{
	background: #666 -webkit-gradient( linear, left bottom, left top, color-stop(0.5, rgb(40,40,40)), color-stop(0.5, rgb(80,80,80)) );
	display: block;
	padding: 0;
	text-decoration: none;
	color: #fff;
	font-size: 12px;
	font-weight: bolder;
	text-shadow: #000 0 -1px 1px;
	width: 90px;
	text-align: center;
	border-bottom: 1px solid #666;
	border-top: 1px solid #222;
	border-left: 1px solid #666;
	border-right: 1px solid #222;
	-webkit-transition:text-shadow .7s ease-out, background .7s ease-out;
}
ul li:first-child a{
	-webkit-border-top-left-radius:20px;
	-webkit-border-bottom-left-radius:20px;
}
ul li:last-child a{
	-webkit-border-top-right-radius:20px;
	-webkit-border-bottom-right-radius:20px;
}

ul li a:hover{
	text-shadow: #f5fc39 0 0 10px;
	background: #222;
	
}
&lt;/pre&gt;&lt;h3&gt;Animated Flickr Images&lt;/h3&gt;
&lt;p&gt;Here I used the same hover effect I applied on the images of my new personal site &lt;a href=&quot;http://fabiosasso.com&quot; title=&quot;http://fabiosasso.com&quot;&gt;http://fabiosasso.com&lt;/a&gt;. So when the user hovers the thumbs the image scales up using the -webkit-transition and -webkit-transform:scale(). Below you can see the code, the transition is applied to the image code, while the transform goes on the hover state only.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/css-tut/thumbs-scale.jpg&quot; /&gt;&lt;/p&gt;
&lt;pre style=&quot;display:block; clear:both; &quot;&gt;
#flickr_badge_uber_wrapper{
	width: 550px;
	position: relative;
	display: block;
	margin: 0 auto;
	margin-top: 100px;
}
.flickr_badge_image{
	float: left;
}
.flickr_badge_image img{
	margin: 10px;
	border: 3px solid #fff;
	display: block;
	position: relative;
	-webkit-border-radius:5px;
	-webkit-box-shadow: #000 0 0 2px;
	-webkit-transition: -webkit-transform .2s ease-in-out, -webkit-box-shadow .2s ease-in;

}
.flickr_badge_image img:hover{
	-webkit-transform:scale(1.2);
	z-index: 10;
	-webkit-box-shadow: #666 0 5px 10px;
}
&lt;/pre&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;a href=&quot;http://fabiosasso.com/labs/buttons.html&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/css-tut/outcome.jpg&quot; /&gt;&lt;br/&gt;&lt;cite&gt;Click on the image to see the demo.&lt;/cite&gt;&lt;/br/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;90s design with CSS&lt;/h2&gt;
&lt;p&gt;The possibility of rotating and scaling HTML elements allows us to create different compositions that before would be possible only using images or Flash.&lt;/p&gt;
&lt;p&gt;So, I had this idea of playing only with CSS and basic typography to create a design inspired by David Carson. Basically I just added some rectangles and messed the typography reducing line-heights and rotated some texts, then with transitions I animated the whole composition to rotate and scale when the user clicks on the &quot;Who am I&quot; text.&lt;/p&gt;
&lt;p&gt;Below you can see the final result of this experiment. It is still a working process but you can have an idea of what you can accomplish now with CSS3.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;a href=&quot;http://fabiosasso.com/labs/90s.html&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/css-tut/90s.jpg&quot; /&gt;&lt;br /&gt;&lt;cite&gt;Click on the image to see the Demo&lt;/cite&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;a href=&quot;http://fabiosasso.com/labs/90s.html&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/css-tut/90s2.jpg&quot; /&gt;&lt;br /&gt;&lt;cite&gt;CSS Scale and Rotate - Click on the image to see the Demo&lt;/cite&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Recommended Articles&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.smashingmagazine.com/2010/06/17/start-using-css3-today-techniques-and-tutorials/&quot;&gt;Start Using CSS3 Today: Techniques and Tutorials&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sitepoint.com/blogs/2008/04/25/css-gradients-transforms-animations-and-masks/&quot;&gt;CSS Gradients, Transforms, Animations, and Masks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://24ways.org/2009/cleaner-code-with-css3-selectors&quot;&gt;Cleaner Code with CSS3 Selectors&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://24ways.org/2009/css-animations&quot;&gt;CSS Animations&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://24ways.org/2009/going-nuts-with-css-transitions&quot;&gt;Going Nuts with CSS Transitions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://kimblim.dk/css-tests/selectors/&quot;&gt;CSS SELECTORS AND PSEUDO SELECTORS BROWSER COMPATIBILITY&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Download&lt;/h3&gt;
&lt;p class=&quot;imgC download&quot;&gt;&lt;a href=&quot;http://imgs.abduzeedo.com/files/tutorials/css-tut/abdz-css.zip&quot;&gt;Click here to download the CSS and Html file used for this tutorial&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Abduzeedo is a blog about design. There are all sorts of articles for those who want to look for inspiration. Also you will find very useful tutorials for the most used applications out there, with a special selection of Photoshop Tutorials and Illustrator Tutorials. You can get in follow us via Twitter at &lt;a href=&quot;http://twitter.com/abduzeedo&quot;&gt;@abduzeedo&lt;/a&gt;  &lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-7764262396280460&quot;;
/* Author 336x280 */
google_ad_slot = &quot;0020356584&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
     <comments>http://abduzeedo.com/playing-css-3-animations-rotate-and-scale#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tags/css3">css3</category>
 <category domain="http://abduzeedo.com/tutorials">tutorial</category>
 <category domain="http://abduzeedo.com/tags/web-design">web design</category>
 <pubDate>Mon, 21 Jun 2010 11:43:08 +0000</pubDate>
 <dc:creator>abduzeedo</dc:creator>
 <guid isPermaLink="false">29947 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>Playing with CSS3</title>
    <link>http://abduzeedo.com/playing-css-3</link>
    <description>&lt;h3&gt;When I was working on the new version of Abduzeedo, the current one, I decided to learn and use CSS 3 to enhance the visual of some elements. Instad of using images to create shadows and round corners I used CSS 3. Of course I knew that it would not be compatible to all browsers, more precisely, the Internet Explorer. &lt;/h3&gt;
&lt;p&gt;From the statistics of the site, the majority uses &lt;strong&gt;Firefox (51.05%)&lt;/strong&gt;, followed by &lt;strong&gt;Safari (25.38)&lt;/strong&gt; and then &lt;strong&gt;Internet Explorer with only 11.73&lt;/strong&gt;, I thought it would work alright, and for those readers that use other browsers they would be able to access the site but would not be able to see these little details.&lt;/p&gt;
&lt;p&gt;So for this tutorial I will show you how I created some of the effects you see on the Abduzeedo UI. We will play with &lt;strong&gt;Box-Shadow, Round-Corners, Tex-Shadow and CSS gradients&lt;/strong&gt;. The idea is to practice, in my opinion the best way to learn.&lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Final Result&lt;/h3&gt;
&lt;p&gt;This is the final result we will have by the end of this quick tutorial. The idea is to play a little bit with CSS3 even though &lt;strong&gt;this might not work perfectly on IE an Opera.&lt;/strong&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;a href=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/demo.html&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Final_Result.jpg&quot; width=&quot;580&quot; height=&quot;696&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;br/&gt;Click on the Image to see the DEMO - It works only in Safari, Firefox and Chrome&lt;/br/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 1&lt;/h3&gt;
&lt;p&gt;The first thing to do is to create the HTML file with our data. Also let&#039;s create the link to our CSS file (&lt;strong&gt;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;tut.css&amp;quot; type=&amp;quot;text/css&amp;quot; media=&amp;quot;all&amp;quot;&amp;gt;&lt;/strong&gt;). There&#039;s great places to learn more about HTML and CSS, I recommend &lt;strong&gt;&lt;a href=&quot;http://css-tricks.com/&quot;&gt;CSS Tricks&lt;/a&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;a href=&quot;http://net.tutsplus.com/&quot;&gt;Nettuts&lt;/a&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;a href=&quot;http://www.smashingmagazine.com/&quot;&gt;Smashingmagazine&lt;/a&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;a href=&quot;http://w3c.org&quot;&gt;W3C&lt;/a&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;a href=&quot;http://24ways.org/&quot;&gt;24ways&lt;/a&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;a href=&quot;http://woork.blogspot.com/&quot;&gt;Woork&lt;/a&gt;&lt;/strong&gt;&lt;a href=&quot;http://woork.blogspot.com/&quot;&gt;&lt;/a&gt; and others.&lt;/p&gt;
&lt;p&gt;Below you can se the page without any style.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_1.jpg&quot; width=&quot;580&quot; height=&quot;553&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 2&lt;/h3&gt;
&lt;p&gt;Here&#039;s the HTML file, as you can see we&#039;re using HTML 5, once again to practice. That&#039;s the best thing of personal projects, we can practice and learn. &lt;/p&gt;
&lt;p&gt;Basically we have a Section called &amp;quot;Box&amp;quot; where the content will be inside. Then we have the navigation (Nav), another section with the content (content) and then inside the content section we have the messages. We use the tag article to them.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_2.jpg&quot; width=&quot;580&quot; height=&quot;709&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 4&lt;/h3&gt;
&lt;p&gt;Let&#039;s start it by changing the &amp;quot;body&amp;quot; style. So let&#039;s define the font, the font weight, margins, paddings and the background color. It&#039;s really important that you have some CSS knowledge already, especially about the CSS Box Model to understand how Padding, Margins, Border, and sizes work. I highly recommend that you read this great article by Chris Coyer: &lt;strong&gt;&lt;a href=&quot;http://css-tricks.com/the-css-box-model/&quot;&gt;The CSS Box Model&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;body{
	font: 14px/140% &amp;quot;Helvetica Neue&amp;quot;, Arial, Helvetica, Geneva, sans-serif;
	font-weight: lighter;
	margin: 0;
	padding: 0;
	background: #ddd;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Now for the box we will play with a new CSS 3 property, &lt;strong&gt;Box Shadow&lt;/strong&gt;. Basically we can add shadows to elements without using any image. It&#039;s pretty simple to use, you set the &lt;strong&gt;Horizonal Lenght, Vertical Lenght, Blur and Color&lt;/strong&gt;. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Example: box-shadow: horizontal lenght vertical legnth blur color = box-shadow: 0px 0px 10px #666. &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;For more information about Box-Shadow check out this article: &lt;strong&gt;&lt;a href=&quot;http://css.flepstudio.org/en/css3/box-shadow.html&quot;&gt;Box-shadow: shadow effect on elements in css3.&lt;/a&gt;&lt;/strong&gt;&lt;a href=&quot;http://css.flepstudio.org/en/css3/box-shadow.html&quot;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;#box{
    display: block;
    position: relative;
    width: 500px;
    margin: 20px auto;
    border: 1px solid #666;
    -webkit-box-shadow: 0 0px 10px #666;
    -moz-box-shadow:0 0px 10px #666;
    box-shadow: 0 0px 10px #666;
}
    &lt;/pre&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_4.jpg&quot; width=&quot;580&quot; height=&quot;647&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 5&lt;/h3&gt;
&lt;p&gt;For the navigation I created a PNG image with alpha transparency to use to create bevel effect to the navigation bar.&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;nav{
    position: relative;
    display: block;
    clear: both;
    background: #444 url(imgs/bg-gradient.png) repeat-x left -25px;
    height: 25px;
    padding: 10px 20px 10px 20px;
}&lt;/pre&gt;&lt;/p&gt;&lt;p&gt;I highly recommend that you use a &lt;strong&gt;RESET.CSS&lt;/strong&gt; for your projects, but here I&#039;m not using, so I will just reset the UL and LI behaviors in order to create my navigation buttons. To understand why we reset our CSS, read this article by Eric Meyer: &lt;strong&gt;&lt;a href=&quot;http://meyerweb.com/eric/tools/css/reset/&quot;&gt;CSS Tools: Reset CSS.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;nav ul, nav ul li{
    list-style-type: none;
    padding: 0;
    margin: 0;
}&lt;/pre&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt; The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_5.jpg&quot; width=&quot;580&quot; height=&quot;590&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 6&lt;/h3&gt;
&lt;p&gt;For the buttons we will use round corners, box-shadow and text shadow to create a very nice effect.  Take a look at the code below. Text-shadow is pretty much the same as box-shadow but for text, it&#039;s the same syntax. Now the round corners is different and it&#039;s one of the most wanted effects, we won&#039;t need to add a lot of markup and images to create this effect anymore.&lt;/p&gt;
&lt;p&gt;I recommend 2 articles about Round Corners: &lt;strong&gt;&lt;a href=&quot;http://www.css3.info/preview/rounded-border/&quot;&gt;Border-radius: create rounded corners with CSS!&lt;/a&gt;&lt;/strong&gt; and &lt;strong&gt;&lt;a href=&quot;http://24ways.org/2009/have-a-field-day-with-html5-forms&quot;&gt;Have a Field Day with HTML5 Forms&lt;/a&gt;&lt;/strong&gt;. The last one will cover another HTML 5 and CSS 3 new features.&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;nav ul li{
    float: left;
    background: #555 url(imgs/bg-gradient.png) repeat-x left -35px;
    padding: 0 10px;
    margin: 0 10px 0 0 ;
    color: #fff;
    font-weight: bold;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    cursor: pointer;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 -1px 1px #333;
    -moz-box-shadow:0 -1px 1px #333;
    box-shadow:0 1px -1px #333;
    text-shadow: #000000 0 -1px 1px;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_6.jpg&quot; width=&quot;554&quot; height=&quot;581&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 7&lt;/h3&gt;
&lt;p&gt;When the user hovers the button we will change the color of the background, font and effects. &lt;/p&gt;
&lt;p&gt;&lt;pre&gt;nav ul li:hover{
    background-color: #ccc;
    box-shadow: 0 -1px 1px #fff;
    -webkit-box-shadow: 0 -1px 1px #fff;
    -moz-box-shadow: 0 -1px 1px #fff;
    color: #333;
    text-shadow: #fff 0 1px 1px;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_7.jpg&quot; width=&quot;576&quot; height=&quot;77&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 8&lt;/h3&gt;
&lt;p&gt;For the search field it&#039;s going to be pretty much the same, however we will use another image for the background, the magnifying glass icon, and position it on the right . &lt;/p&gt;
&lt;p&gt;&lt;pre&gt;input{
    background: #ddd url(imgs/mglass.png) no-repeat 135px 2px ;
    outline: none !important;
    position: absolute;
    right: 20px;
    display: block;
    padding: 5px 10px;
    top: 9px;
    border: none;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    box-shadow: 0 -1px 1px #333;
    -moz-box-shadow: 0 -1px 1px #333;
    -webkit-box-shadow: 0 -1px 1px #333;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For the focus state let&#039;s just change the color of the backgroun.&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;input:focus{
    background: #fff;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_8.jpg&quot; width=&quot;579&quot; height=&quot;71&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 9&lt;/h3&gt;
&lt;p&gt;For the content  let&#039;s play with gradients via CSS3. This will work only on Webkit based browsers. (Safari, Chrome, Webkit). Basically we set 2 or more colors that will create the gradient. I highly recommend that you take a look at this article: Introducing to &lt;strong&gt;&lt;a href=&quot;http://webkit.org/blog/175/introducing-css-gradients/&quot;&gt;CSS Gradients&lt;/a&gt;&lt;/strong&gt;. Because only Webkit browsers will show the gradient I added 2 backrounds, the first one is set to grey (#ddd) and it will work on other browsers that will ignore the gradient.&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;section#content{
    display: block;
    position: relative;    
    background: #ddd;
    background: #ddd -webkit-gradient(linear, 0% 0%, 0% 90%, from(rgba(100, 100, 100, .5)), to(rgba(90, 90, 90, .1)));
    padding: 20px 20px 10px 20px;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;.clear{
    clear: both;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_9.jpg&quot; width=&quot;567&quot; height=&quot;660&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 10&lt;/h3&gt;
&lt;p&gt;For the thumbnails lets once again use Round Corners and Box Shadow. Besides that, use &lt;strong&gt;FLOAT:LEFT&lt;/strong&gt; to align them to the left and a 3px solid white border.&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;#thumb img{
    float: left;
    border: 3px solid #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0px 3px #333;
    -moz-box-shadow:0 0px 3px #333;
    box-shadow:0 0px 3px #333;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_10.jpg&quot; width=&quot;564&quot; height=&quot;523&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 11&lt;/h3&gt;
&lt;p&gt;The idea for the messages is to create a dialog box. Apply the Round-corners to all sides but the top left. Also I added the Box Shadow, and the CSS Gradient. &lt;/p&gt;
&lt;p&gt;&lt;pre&gt;div.msg{
    float: right;
    width: 320px;
    padding: 20px;
    background: #f0f0f0 -webkit-gradient(linear, 0% 0%, 0 90%, from(rgba(100, 100, 100, 0)), to(rgba(90, 90, 90, .2)));
    
    -webkit-box-shadow: 0 0px 5px #333;
    -moz-box-shadow:0 0px 5px #333;
    box-shadow:0 0px 5px #333;
    
    margin-top: 40px;
    
    -moz-border-radius-bottomleft:0px;
    -moz-border-radius-bottomright:10px;
    -moz-border-radius-topleft:0;
    -moz-border-radius-topright:10px;
    
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;As I didn&#039;t reset my CSS, the H3 was using the browser default style for it. So I had to change the margin to 0 and for the padding I changed the top, right and left to 0 just adding 10 pixels for the padding bottom.&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;h3{
	     padding: 0 0 10px;
	     margin: 0;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_10_1.jpg&quot; width=&quot;580&quot; height=&quot;697&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3 class=&quot;StepTitle&quot;&gt;Step 12&lt;/h3&gt;
&lt;p&gt;One of the coolest things about CSS 3 is that we can play with shadows and also create glows by just changing the color of the box-shadow.&lt;/p&gt;
&lt;p&gt;&lt;pre&gt;div.msg:hover, #thumb img:hover{
    -webkit-box-shadow: 0 0px 5px #0cf;
    -moz-box-shadow:0 0px 5px #0cf;
    box-shadow:0 0px 5px #0cf;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Step_11.jpg&quot; width=&quot;570&quot; height=&quot;729&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;/p&gt;
&lt;h3&gt;Conclusion&lt;/h3&gt;
&lt;p&gt;Once again the idea of this quick tutorial is to show you the possibilities, there&#039;s much more to learn and of course everything has to be tested to make sure that it will work fine on different browsers. It is all about practicing.  &lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt; &lt;a href=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/demo.html&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/Final_Result.jpg&quot; width=&quot;580&quot; height=&quot;696&quot; alt=&quot;Playing with CSS3&quot; /&gt; &lt;br/&gt;Click on the Image to see the DEMO - It works only in Safari, Firefox and Chrome&lt;/br/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Download the Files used for this Tutorial&lt;/h3&gt;
&lt;p class=&quot;imgC download&quot;&gt;&lt;a href=&quot;http://imgs.abduzeedo.com/files/tutorials/CSS3_Tutorial/files.zip&quot;&gt;Click here to download the files used for this tutorial&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Abduzeedo is a blog about design. There are all sorts of articles for those who want to look for inspiration. Also you will find very useful tutorials for the most used applications out there, with a special selection of Photoshop Tutorials and Illustrator Tutorials. You can get in follow us via Twitter at &lt;a href=&quot;http://twitter.com/abduzeedo&quot;&gt;@abduzeedo&lt;/a&gt;  &lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-7764262396280460&quot;;
/* Author 336x280 */
google_ad_slot = &quot;0020356584&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
     <comments>http://abduzeedo.com/playing-css-3#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tutorials">tutorial</category>
 <category domain="http://abduzeedo.com/tags/web-design">web design</category>
 <pubDate>Tue, 08 Dec 2009 11:14:01 +0000</pubDate>
 <dc:creator>abduzeedo</dc:creator>
 <guid isPermaLink="false">16887 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>350+ Great CSS Tools and Techniques</title>
    <link>http://abduzeedo.com/350-great-css-tools-and-techniques</link>
    <description>&lt;h3&gt;One of the most enjoyable moments for a web designer is coding CSS. It&#039;s such a nice language that it actually gets fun to work with it... style your pages and actually watching your designs gain life and forms. But sometimes, a little help is welcome.&lt;/h3&gt;
&lt;p&gt;Even being a fun thing to do, sometimes you run into some problems, trying to find the right way to get a certain look. But for our sake, there are many many great sites out there that help us during these times, such as the great &lt;a href=&quot;http://www.cssplay.co.uk/&quot;&gt;CSS Play&lt;/a&gt;, &lt;a href=&quot;http://www.smashingmagazine.com/&quot;&gt;Smashing Magazine&lt;/a&gt;, and others.
&lt;/p&gt;&lt;p&gt;Taking a quick ride thru my Delicious, I took a look at some of my CSS tag favorites, and I&#039;d like to share them with you. These are really resourceful articles, worth the visit. From tools to simple techniques that will help you at some point. Hope you all enjoy these!! Cheers. ;)&lt;/p&gt;
&lt;h3&gt;50 Extremely Useful And Powerful CSS Tools&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://www.smashingmagazine.com/2008/12/09/50-really-useful-css-tools/&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-1.jpg&quot; alt=&quot;50 Extremely Useful And Powerful CSS Tools&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;12 CSS Tools and Tutorials for Beautiful Web Typography&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://webdesignledger.com/resources/12-css-tools-and-tutorials-for-beautiful-web-typography&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-2.jpg&quot; alt=&quot;12 CSS Tools and Tutorials for Beautiful Web Typography&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;101 CSS Techniques Of All Time- Part 1&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://www.noupe.com/design/101-css-techniques-of-all-time-part-1.html&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-3.jpg&quot; alt=&quot;101 CSS Techniques Of All Time- Part 1&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;53 CSS-Techniques You Couldn’t Live Without&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-4.jpg&quot; alt=&quot;53 CSS-Techniques You Couldn’t Live Without&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Powerful CSS-Techniques For Effective Coding&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://www.smashingmagazine.com/2008/02/21/powerful-css-techniques-for-effective-coding/&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-5.jpg&quot; alt=&quot;Powerful CSS-Techniques For Effective Coding&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;25 Code Snippets for Web Designers (Part1)&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://tutorialblog.org/25-code-snippets-for-web-designers-part1/&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-6.jpg&quot; alt=&quot;25 Code Snippets for Web Designers (Part1)&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;25 Code Snippets for Web Designers (Part2)&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://tutorialblog.org/25-code-snippets-for-web-designers-part2/&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-7.jpg&quot; alt=&quot;25 Code Snippets for Web Designers (Part2)&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;25 Code Snippets for Web Designers (Part3)&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://tutorialblog.org/25-code-snippets-for-web-designers-part3/&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-8.jpg&quot; alt=&quot;25 Code Snippets for Web Designers (Part3)&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;CSS Dock Menu&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://www.ndesign-studio.com/blog/mac/css-dock-menu&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-9.jpg&quot; alt=&quot;CSS Dock Menu&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Most used CSS tricks&lt;/h3&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://stylizedweb.com/2008/03/12/most-used-css-tricks/&quot; title=&quot;350+ Great CSS Tools and Techniques&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.abductit.com/files/articles/350_great_css_tools_techniques/css-10.jpg&quot; alt=&quot;Most used CSS tricks&quot; /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Hello, everyone! I&#039;m Paulo Gabriel, designer from Porto Alegre, Brazil, born in 1984. I have worked as a webdesigner since 2006, but websites and blogs have been a hobby for me since 1999. Here in Abduzeedo, I try to bring only the hot stuff for you... and hope that all of you enjoy my posts! For more cool stuff, you may also &lt;u&gt;follow me&lt;/u&gt; on &lt;a href=&quot;http://twitter.com/paulogabriel&quot;&gt;Twitter&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-9736137790857407&quot;;
/* Abduzeedo Setembro 2011 */
google_ad_slot = &quot;1850409564&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
     <comments>http://abduzeedo.com/350-great-css-tools-and-techniques#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tags/techniques">techniques</category>
 <category domain="http://abduzeedo.com/tags/tools">tools</category>
 <category domain="http://abduzeedo.com/tags/web-design">web design</category>
 <pubDate>Wed, 08 Apr 2009 13:33:31 +0000</pubDate>
 <dc:creator>PauloGabriel</dc:creator>
 <guid isPermaLink="false">5388 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>CSS Quick Tricks #1 - Where to put your CSS</title>
    <link>http://abduzeedo.com/css-quick-tricks-1-where-put-your-css</link>
    <description>&lt;p&gt;Apart from the awesome design you get fed with here, it is time to start a new series! &lt;strong&gt;CSS Quick Tricks&lt;/strong&gt;!&lt;br /&gt;
To be honest, I didn&#039;t really know where to start, so I thought I&#039;d start at something simple, and then, as we move on, we get in to more advanced topics on CSS.&lt;br /&gt;
For this quick trick, I&#039;m going to teach you where you can place your CSS, the most efficient way.&lt;/p&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;h2&gt;Where to place your CSS&lt;/h2&gt;
&lt;p&gt;In CSS, there are different ways to put it in function; Inline, Internal (or &quot;Embedded&quot;) and External.&lt;br /&gt;
You&#039;ve probably used them all, at least one time.&lt;/p&gt;
&lt;h3&gt;What&#039;s the difference?&lt;/h3&gt;
&lt;p&gt;How can this question better be answered than with some pieces of code?&lt;/p&gt;
&lt;p&gt;With an &lt;strong&gt;external stylesheet&lt;/strong&gt;, you create &lt;strong&gt;a link&lt;/strong&gt; to a stylesheet. This is by far the most efficient way when you have multiple pages, running on 1 CSS file.&lt;br /&gt;
To do this, in the head section of your html document, place this line of code:&lt;/p&gt;
&lt;pre&gt;&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; link=&quot;directory/file.css&quot; /&gt;&lt;/pre&gt;&lt;p&gt;
As you can see, we&#039;ve literally created a link to a stylesheet, that is not located in the HTML, or in other words; Is external.&lt;/p&gt;
&lt;p&gt;With an &lt;strong&gt;internal stylesheet&lt;/strong&gt;, you place the whole stylesheet inside the HTML. This is again done inside the &lt;strong&gt;head tag&lt;/strong&gt;, but in a different way.&lt;br /&gt;
The reason you might want to put styles inside your HTML, may be, because one page in particular may need some seperate styling, which can cause problems on other pages, or if you just don&#039;t want to increase the file size of your CSS document.&lt;br /&gt;
The right way to place a style(sheet) internally is:&lt;/p&gt;
&lt;pre&gt;&amp;lt;style rel=&amp;quot;stylesheet&amp;quot;&gt;
* { margin: 0px; padding: 0px; }
&amp;lt;/style&gt;&lt;/pre&gt;
&lt;p&gt;Left over is the &lt;strong&gt;inline&lt;/strong&gt; way, the reason you use this may be, that just a certain element needs f.e. a red color. However, take my advice; When styling a page, &lt;strong&gt;do NOT&lt;/strong&gt; use this to style your whole page, but just for the little pieces that you couldn&#039;t be bothered about in your stylesheet.&lt;br /&gt;
The way you use this way of CSS styling (some may not even call it CSS) is as follows:&lt;/p&gt;
&lt;pre&gt;&amp;lt;div style=&amp;quot;background-color: #fff;&amp;quot;&gt;&lt;/pre&gt;&lt;p&gt;NOTE: This is just an example. Every CSS selector in here, and you can use it with every HTML element.&lt;/p&gt;
&lt;h3&gt;But what way, is the best way?&lt;/h3&gt;
&lt;p&gt;Well, there&#039;s no real answer to this question, because it depends on the way you are going to use it. But when you want to use CSS most efficiently, I suggest using the followng &lt;strong&gt;guidelines&lt;/strong&gt;:&lt;/p&gt;
&lt;p&gt;If you are going to style multiple pages with one stylesheet, &lt;strong&gt;use the external way&lt;/strong&gt;, and you may even want to use this way on a single page.&lt;br /&gt;
This may prevent having issues, when the website needs a style update, or some little tweaking.&lt;/p&gt;
&lt;p&gt;If you just need to style a few elements that were left out on the original stylesheet, for whatever reason, use the &lt;strong&gt;embedded way&lt;/strong&gt;. Like this, you won&#039;t increase the total file size of other pages not needing the additional styling, and thus decrease loading time for other pages.&lt;/p&gt;
&lt;p&gt;If you just need to style a &lt;strong&gt;single&lt;/strong&gt; paragraph tag (or something similar), that neither external nor embedded stylesheets are worth mentioning, use the &lt;strong&gt;inline way&lt;/strong&gt;.&lt;br /&gt;
And again, take my advice, do NOT use this to style whole pages, it will give a lot of unnecessary code, and when updating/tweaking a page, you will be busy for ages.&lt;/p&gt;
&lt;h3&gt;Conclusion&lt;/h3&gt;
&lt;p&gt;I hope you liked this first one in the new series, so I can do many more!&lt;br /&gt;
Also, suggestions or questions are always welcome, so I have some inspiration to write about.&lt;br /&gt;
&lt;strong&gt;Thanks!&lt;/strong&gt;&lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Hey There! I´m Daan Weijers, I come from Eindhoven, The Netherlands.&lt;br /&gt;
I enjoy design and drawing very much, also, I play guitar, play soccer and hang out with friends.&lt;br /&gt;
Please don&#039;t be mad if you miss my posts, but it&#039;s mainly due to a personal project, called &lt;a href=&quot;http://www.ipaperr.com&quot; title=&quot;iPaperr Link&quot;&gt;iPaperr&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
     <comments>http://abduzeedo.com/css-quick-tricks-1-where-put-your-css#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tags/html">html</category>
 <category domain="http://abduzeedo.com/tags/tricks">tricks</category>
 <category domain="http://abduzeedo.com/tutorials">tutorial</category>
 <category domain="http://abduzeedo.com/tags/web-0">web</category>
 <pubDate>Sun, 22 Feb 2009 22:24:29 +0000</pubDate>
 <dc:creator>Daan</dc:creator>
 <guid isPermaLink="false">3700 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>Mini-layout inspired on 9rules design - CSS Part</title>
    <link>http://abduzeedo.com/mini-layout-inspired-9rules-design-css-part</link>
    <description>&lt;h3&gt;Previously we&#039;ve shown how to make a small layout on fireworks based on the 9rules desing. Now we&#039;re going to show you how to set this to code up. We&#039;re gonna explain everything, from slicing in Fireworks to setting the css in the code. Enjoy and let&#039;s get started!&lt;/h3&gt;
&lt;h3&gt;STEP 1 - SECTIONS&lt;/h3&gt;
&lt;p&gt;First of all, we need to open the file at the the &lt;a href=&quot;http://abduzeedo.com/mini-layout-inspired-9rules-design&quot;&gt;Tutorial Part 1&lt;/a&gt;. After that, we&#039;re going to set the regions of this page, this will help us to make the code.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;img src=&quot;http://zee.com.br/files/tutorials/9rules_css/images/media_1217337386035.jpg&quot; alt=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; title=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; /&gt;
&lt;/p&gt;
&lt;h3&gt;STEP 2 - THE CODE&lt;/h3&gt;
&lt;p&gt;Now we can start to code. We will make the basic structure and then see how the page will look only with some plain text. To do the code, we use Smultron, a free and powerfull text editor, but you can use whatever you want. Let&#039;s code it region by region:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;HEADER:&lt;/strong&gt;&lt;/p&gt;
&lt;pre class=&quot;html&quot; name=&quot;code&quot;&gt;
	&lt;div id=&quot;header&quot;&gt;
		&lt;h1&gt;&lt;a href=&quot;#&quot;&gt;Abduzeedo by design&lt;/a&gt;&lt;/h1&gt;
	&lt;/div&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;MAIN:&lt;/strong&gt;&lt;/p&gt;
&lt;pre class=&quot;html&quot; name=&quot;code&quot;&gt;
	&lt;div id=&quot;main&quot;&gt;
		&lt;div id=&quot;slogan&quot;&gt;
			The idea behind this blog is mainly to be a channel to design.
		&lt;/div&gt;
		&lt;div id=&quot;content&quot;&gt;
			&lt;div id=&quot;content_inner&quot;&gt;
				&lt;h2&gt;New Posts&lt;/h2&gt;
				&lt;ul&gt;
					&lt;li class=&quot;white&quot;&gt;
						&lt;h3&gt;Inspiration: Amy Stein Photography&lt;/h3&gt;
						&lt;span class=&quot;submitted&quot;&gt;Posted by &lt;a href=&quot;#&quot;&gt;Aloa&lt;/a&gt; -  06/30/2008&lt;/span&gt;
					&lt;/li&gt;	
					&lt;li class=&quot;gray&quot;&gt;
						&lt;h3&gt;Inspiration: Amy Stein Photography&lt;/h3&gt;
						&lt;span class=&quot;submitted&quot;&gt;Posted by &lt;a href=&quot;#&quot;&gt;Aloa&lt;/a&gt; -  06/30/2008&lt;/span&gt;
					&lt;/li&gt;	
					&lt;li class=&quot;white&quot;&gt;
						&lt;h3&gt;Inspiration: Amy Stein Photography&lt;/h3&gt;
						&lt;span class=&quot;submitted&quot;&gt;Posted by &lt;a href=&quot;#&quot;&gt;Aloa&lt;/a&gt; -  06/30/2008&lt;/span&gt;
					&lt;/li&gt;	
				&lt;/ul&gt;
				&lt;div class=&quot;pager&quot;&gt;
					&lt;span class=&quot;pages&quot;&gt;Currently on Page &lt;strong&gt;1 of 24&lt;/strong&gt;&lt;/span&gt;
					&lt;div class=&quot;links&quot;&gt;&lt;a href=&quot;#&quot;&gt;Previous&lt;/a&gt;&lt;a href=&quot;#&quot;&gt;Next&lt;/a&gt;&lt;/div&gt;
				&lt;/div&gt;
			&lt;/div&gt;
		&lt;/div&gt;
		&lt;div id=&quot;footer&quot;&gt;
			&lt;div id=&quot;footer_inner&quot;&gt;2008 abduzeedo.com&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;CONTENT:&lt;/strong&gt;&lt;/p&gt;
&lt;pre class=&quot;html&quot; name=&quot;code&quot;&gt;
	&lt;div id=&quot;content&quot;&gt;
			&lt;div id=&quot;content_inner&quot;&gt;
				&lt;h2&gt;New Posts&lt;/h2&gt;
				&lt;ul&gt;
					&lt;li class=&quot;white&quot;&gt;
						&lt;h3&gt;Inspiration: Amy Stein Photography&lt;/h3&gt;
						&lt;span class=&quot;submitted&quot;&gt;Posted by &lt;a href=&quot;#&quot;&gt;Aloa&lt;/a&gt; -  06/30/2008&lt;/span&gt;
					&lt;/li&gt;	
					&lt;li class=&quot;gray&quot;&gt;
						&lt;h3&gt;Inspiration: Amy Stein Photography&lt;/h3&gt;
						&lt;span class=&quot;submitted&quot;&gt;Posted by &lt;a href=&quot;#&quot;&gt;Aloa&lt;/a&gt; -  06/30/2008&lt;/span&gt;
					&lt;/li&gt;	
					&lt;li class=&quot;white&quot;&gt;
						&lt;h3&gt;Inspiration: Amy Stein Photography&lt;/h3&gt;
						&lt;span class=&quot;submitted&quot;&gt;Posted by &lt;a href=&quot;#&quot;&gt;Aloa&lt;/a&gt; -  06/30/2008&lt;/span&gt;
					&lt;/li&gt;	
				&lt;/ul&gt;
				&lt;div class=&quot;pager&quot;&gt;
					&lt;span class=&quot;pages&quot;&gt;Currently on Page &lt;strong&gt;1 of 24&lt;/strong&gt;&lt;/span&gt;
					&lt;div class=&quot;links&quot;&gt;&lt;a href=&quot;#&quot;&gt;Previous&lt;/a&gt;&lt;a href=&quot;#&quot;&gt;Next&lt;/a&gt;&lt;/div&gt;
				&lt;/div&gt;
			&lt;/div&gt;
		&lt;/div&gt;
&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;FULL CODE&lt;/strong&gt;&lt;/p&gt;
&lt;pre class=&quot;html&quot; name=&quot;code&quot;&gt;
&amp;lt;body&amp;gt
&lt;div id=&quot;total&quot;&gt; &lt;!--*** With this DIV is to put all content centralized ***--&gt;&lt;!--*** With this DIV is to put all content centralized ***--&gt;
	&lt;div id=&quot;header&quot;&gt;
		&lt;h1&gt;&lt;a href=&quot;#&quot;&gt;Abduzeedo by design&lt;/a&gt;&lt;/h1&gt;
	&lt;/div&gt;
	&lt;div id=&quot;main&quot;&gt;
		&lt;div id=&quot;slogan&quot;&gt;
			The idea behind this blog is mainly to be a channel to design.
		&lt;/div&gt;
		&lt;div id=&quot;content&quot;&gt;
			&lt;div id=&quot;content_inner&quot;&gt;
				&lt;h2&gt;New Posts&lt;/h2&gt;
				&lt;ul&gt;
					&lt;li class=&quot;white&quot;&gt;
						&lt;h3&gt;Inspiration: Amy Stein Photography&lt;/h3&gt;
						&lt;span class=&quot;submitted&quot;&gt;Posted by &lt;a href=&quot;#&quot;&gt;Aloa&lt;/a&gt; -  06/30/2008&lt;/span&gt;
					&lt;/li&gt;	
					&lt;li class=&quot;gray&quot;&gt;
						&lt;h3&gt;Inspiration: Amy Stein Photography&lt;/h3&gt;
						&lt;span class=&quot;submitted&quot;&gt;Posted by &lt;a href=&quot;#&quot;&gt;Aloa&lt;/a&gt; -  06/30/2008&lt;/span&gt;
					&lt;/li&gt;	
					&lt;li class=&quot;white&quot;&gt;
						&lt;h3&gt;Inspiration: Amy Stein Photography&lt;/h3&gt;
						&lt;span class=&quot;submitted&quot;&gt;Posted by &lt;a href=&quot;#&quot;&gt;Aloa&lt;/a&gt; -  06/30/2008&lt;/span&gt;
					&lt;/li&gt;	
				&lt;/ul&gt;
				&lt;div class=&quot;pager&quot;&gt;
					&lt;span class=&quot;pages&quot;&gt;Currently on Page &lt;strong&gt;1 of 24&lt;/strong&gt;&lt;/span&gt;
					&lt;div class=&quot;links&quot;&gt;&lt;a href=&quot;#&quot;&gt;Previous&lt;/a&gt;&lt;a href=&quot;#&quot;&gt;Next&lt;/a&gt;&lt;/div&gt;
				&lt;/div&gt;
			&lt;/div&gt;
		&lt;/div&gt;
		&lt;div id=&quot;footer&quot;&gt;
			&lt;div id=&quot;footer_inner&quot;&gt;2008 abduzeedo.com&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;
&amp;lt;/body&amp;gt
&lt;/pre&gt;&lt;p&gt;You may save this file and call it index.html. &lt;a href=&quot;http://zee.com.br/files/tutorials/9rules_css/index_noCss.html&quot;&gt;Here&lt;/a&gt; you can see how your browser will render it with no styles right now.&lt;/p&gt;
&lt;h3&gt;STEP 3 - SLICING THE PNG&lt;/h3&gt;
&lt;p&gt;At this step, we&#039;re gonna hide some layers and use the &lt;strong&gt;Slice Tool&lt;/strong&gt; to export the images that we&#039;ll use in the CSS. Select the tool and make the slices as shown.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;img src=&quot;http://zee.com.br/files/tutorials/9rules_css/images/media_1217337442752.jpg&quot; alt=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; title=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; /&gt;
&lt;/p&gt;
&lt;h3&gt;STEP 4 - EXPORTING IMAGES&lt;/h3&gt;
&lt;p&gt;After making the slices we&#039;ll export the images. Click with the right button over each slice and select &lt;strong&gt;Export Select Slice&lt;/strong&gt;, save the images inside a folder in the root, and call this folder &amp;quot;images&amp;quot;. Check the names of each image we&#039;ve exported.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;img src=&quot;http://zee.com.br/files/tutorials/9rules_css/images/media_1217338699213.jpg&quot; alt=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; title=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; /&gt;&lt;br /&gt;
&lt;br/&gt;&lt;br/&gt;&lt;br /&gt;
&lt;img src=&quot;http://zee.com.br/files/tutorials/9rules_css/images/media_1217339078267.jpg&quot; alt=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; title=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; /&gt;
&lt;/br/&gt;&lt;/br/&gt;&lt;/p&gt;
&lt;h3&gt;STEP 5 - CSS&lt;/h3&gt;
&lt;p&gt;Now we must link the CSS file in the HTML. Insert the following line inside the &amp;lt;head&amp;gt; tag.&lt;/p&gt;
&lt;pre class=&quot;html&quot; name=&quot;code&quot;&gt;&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;style.css&quot; /&gt;&lt;/pre&gt;&lt;p&gt;To build the CSS we&#039;l use CSSEdit. Open a new CSS file and save it on the root folder as style.css. To begin the styles we will create the main ID&#039;s.&lt;/p&gt;
&lt;pre class=&quot;css&quot; name=&quot;code&quot;&gt;body {
	font-family: &quot;Helvetica Neue&quot;, Arial, Helvetica, Geneva, sans-serif;
	font-size: 16px;
	margin: 0;
	padding: 0;
	background: #000;
}
#total {
	width: 600px;
	height: 600px;
	border: 5px solid #FFF;
	position: relative;
	margin: 20px auto;
}
#header {
	height: 105px;
	background: url(images/bg_header.jpg);
	position: relative;
}
#main {
	background: url(images/bg_body.png) left top repeat-x #DBE8C4;
	height: 477px;
	width: 500px;
	padding: 18px 50px 0 50px;
}
#slogan {
	width: 195px;
	height: 82px;
	background: url(images/bg_slogan.jpg) no-repeat;
	color: #325D6A;
	padding: 18px 20px 0 285px;
	line-height: 1.3em;
}
#content {
	background: url(images/bg_roundWhite_top.png) left top no-repeat #FFF;
	margin-top: 15px;
}
#footer {
	background: url(images/bg_roundGreen_top.png) left top no-repeat #81AC40;
	margin-top: 15px;
}
&lt;/pre&gt;&lt;p&gt;Now, let&#039;s make the style for the contents inside the ID #content. We must create the #content_inner, to make the round corners at the bottom and at the top.&lt;/p&gt;
&lt;pre class=&quot;css&quot; name=&quot;code&quot;&gt;
#content_inner {
		background: url(images/bg_roundWhite_bottom.png) left bottom no-repeat;
		height: 240px;
		padding: 10px 15px;
	}
	#content_inner h2 {
		margin: 0;
		color: #666;
		font-size: .9em;
		font-weight: normal;
		border-bottom: 1px dotted #CCC;
		padding-bottom: 10px;
		height: 15px;
	}
	#content_inner ul {
		margin: 0;
		padding: 0;
	}
	#content_inner ul li{
		margin: 0;
		padding: 0;
		list-style: none;
		height: 50px;
		padding-top: 10px;
		padding-left: 15px;
		border-bottom: 1px dotted #CCC;
	}
		#content_inner ul li.gray {
			background: #f5f5f5;	
		}
	#content_inner ul li h3 {
		margin: 0;
		font-size: .95em;
		line-height: 20px;
	}
	#content_inner ul li .submitted {
		color: #666;
		font-size: .8em;
		height: 20px;
		line-height: 20px;
	}
	#content_inner ul li .submitted a{
		color: #325D6A;
		font-weight: bold;
		text-decoration: none;
	}
	#content_inner ul li .submitted a:hover {
		color: #000;
		text-decoration: underline;
	}
	#content_inner .pager {
		position: relative;
		height: 30px;
	}
	#content_inner .pager .pages {
		position: absolute;
		left: 0;
		top: 0;
		color: #666;
		font-size: .7em;
		line-height: 30px;
	}
	#content_inner .pager .pages strong {
		color: #000;
	}
	#content_inner .pager .links {
		position: absolute;
		right: 0;
		top: 10px;
		height: 18px;
		line-height: 18px;
		font-size: .6em;
		font-weight: bold;
		text-transform: uppercase;
	}
	#content_inner .pager .links a{
		text-decoration: none;
		background: #325D6A;
		color: #FFF;
		line-height: 18px;
		height: 18px;
		padding: 3px 5px;
		margin-left: 5px;
	}
	#content_inner .pager .links a:hover {
		background: #000;
	}
&lt;/pre&gt;&lt;p&gt;For the footer, we&#039;re gonna do the same thing, create the #footer_inner for the round corners.&lt;/p&gt;
&lt;pre class=&quot;css&quot; name=&quot;code&quot;&gt;
#footer_inner {
		background: url(images/bg_roundGreen_bottom.png) left bottom no-repeat;
		height: 70px;
		line-height: 70px;
		text-indent: 15px;
		color: #2A3D15;
		font-size: 1.2em;
		font-weight: bold;
	}
&lt;/pre&gt;&lt;p&gt;For our final step, we&#039;re gonna place the logo. We&#039;re gonna name our logo &#039;logo.png&#039;. Take a look how we&#039;ll make this style.&lt;/p&gt;
&lt;pre class=&quot;css&quot; name=&quot;code&quot;&gt;#header h1 {
		width: 292px;
		height: 130px;
		background: url(images/logo.png);
		margin: 0;
		text-indent: -2000px;
		position: absolute;
		left: 50px;
		top: 20px;
	}
	#header h1 a {
		display: block;
		width: 292px;
		height: 130px;
		outline: none;
		text-decoration: none;
	}&lt;/pre&gt;&lt;h3&gt;FINAL RESULT&lt;/h3&gt;
&lt;p&gt;You can see that all process is very easy, but you must exercise the CSS part, this is the heart of web design. A beatiful code is nothing without a good CSS to show the hard work we had to design. Practice and share with us your results!&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;
&lt;a href=&quot;http://zee.com.br/files/tutorials/9rules_css/index.html&quot;&gt;&lt;img src=&quot;http://zee.com.br/files/tutorials/9rules_css/images/media_1217343260632.jpg&quot; alt=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; title=&quot;Mini-layout inspired on 9rules design - CSS Part&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;link href=&quot;http://zee.com.br/misc/SyntaxHighlighter/Styles/SyntaxHighlighter.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot; /&gt;
&lt;script src=&quot;http://zee.com.br/misc/SyntaxHighlighter/Scripts/shCore.js&quot; language=&quot;javascript&quot;&gt;&lt;/script&gt;&lt;script src=&quot;http://zee.com.br/misc/SyntaxHighlighter/Scripts/shBrushXml.js&quot; language=&quot;javascript&quot;&gt;&lt;/script&gt;&lt;script src=&quot;http://zee.com.br/misc/SyntaxHighlighter/Scripts/shBrushCss.js&quot; language=&quot;javascript&quot;&gt;&lt;/script&gt;&lt;script language=&quot;javascript&quot;&gt; dp.SyntaxHighlighter.ClipboardSwf = &#039;http://zee.com.br/misc/SyntaxHighlighter/Scripts/clipboard.swf&#039;; dp.SyntaxHighlighter.HighlightAll(&#039;code&#039;); &lt;/script&gt;&lt;table id=&quot;attachments&quot; class=&quot;sticky-enabled&quot;&gt;
 &lt;thead&gt;&lt;tr&gt;&lt;th&gt;Attachment&lt;/th&gt;&lt;th&gt;Size&lt;/th&gt; &lt;/tr&gt;&lt;/thead&gt;
&lt;tbody&gt;
 &lt;tr class=&quot;odd&quot;&gt;&lt;td&gt;&lt;a href=&quot;http://www.abduzeedo.com.br/files/9rules_tutorial.zip&quot;&gt;9rules_tutorial.zip&lt;/a&gt;&lt;/td&gt;&lt;td&gt;312.2 KB&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;I&#039;m from Brazil, co-founder of &lt;a href=&quot;http://zee.com.br&quot;&gt;Zee&lt;/a&gt; with Fabio. Nowadays I like to play with Fireworks, Photoshop and improve my skills in CSS. If you wanna request some posts, please feel free to &lt;a href=&quot;mailto:fabiano@zee.com.br&quot;&gt;contact me&lt;/a&gt; or follow on &lt;a href=&quot;http://twitter.com/FabianoMe&quot;&gt;Twitter&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-7649048507452478&quot;;
/* 468x60 */
google_ad_slot = &quot;2984698263&quot;;
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
     <comments>http://abduzeedo.com/mini-layout-inspired-9rules-design-css-part#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tutorials">tutorial</category>
 <enclosure url="http://www.abduzeedo.com.br/files/9rules_tutorial.zip" length="319693" type="application/zip" />
 <pubDate>Tue, 29 Jul 2008 18:31:08 +0000</pubDate>
 <dc:creator>fabiano</dc:creator>
 <guid isPermaLink="false">534 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>Tutorial: Obama&#039;s Background in CSS - Part 2</title>
    <link>http://abduzeedo.com/tutorial-obamas-background-css-part-2</link>
    <description>&lt;h3&gt;In this tutorial we&amp;#39;re going to show how you may use the background we&amp;#39;ve created in the &lt;a href=&quot;/tutorial-obamas-background-fireworks-part-1&quot;&gt;Obama&amp;#39;s Background 1st part&lt;/a&gt;. But we&amp;#39;re not only gonna show you how to put it inside a site body, but also how to create and structure the site main regions like the menu, main content, support column and footer.&lt;/h3&gt;
&lt;p&gt;Our objective is not only to assemble the whole site, but also show some CSS basic concepts and Fireworks intregration with Web.&lt;/p&gt;
&lt;h3&gt;STEP 1&lt;/h3&gt;
&lt;p&gt;The first thing we must do is to export our images. Since we&amp;#39;re creating only the basic structure, we&amp;#39;re only gonna need two images: background and logo.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://zee.com.br/files/tutorials/obama_css/images/tut_obama_1.jpg&quot; title=&quot;Tutorial Obama Parte 2&quot; alt=&quot;Tutorial Obama Parte 2&quot; class=&quot;img&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;STEP 2&lt;/h3&gt;
&lt;p&gt;Now let&amp;#39;s create the html file. The structure will have 4 regions: &lt;b&gt;#header, #main, #sidebar and #footer&lt;/b&gt;. Notice that we&amp;#39;re gonna insert the #main and #sidebar inside a &lt;b&gt;#content&lt;/b&gt;, this way we&amp;#39;re gonna have a greater possibility to modify things in the future.&lt;/p&gt;
&lt;pre&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;div id=&amp;quot;total&amp;quot;&amp;gt;&lt;br /&gt;	&amp;lt;div id=&amp;quot;header&amp;quot;&amp;gt; &lt;br /&gt;		&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&lt;br /&gt;			&amp;lt;img src=&amp;quot;logo_obama.jpg&amp;quot; alt=&amp;quot;Home Obama&amp;quot;/&amp;gt;&lt;br /&gt;		&amp;lt;/a&amp;gt;&lt;br /&gt;	&amp;lt;/div&amp;gt;&lt;br /&gt;	&amp;lt;div id=&amp;quot;menu&amp;quot;&amp;gt;MENU&lt;br /&gt;	&amp;lt;/div&amp;gt;&lt;br /&gt;	&amp;lt;div id=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;		&amp;lt;div id=&amp;quot;main&amp;quot;&amp;gt;HERE IS THE MAIN CONTENT&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div id=&amp;quot;sidebar&amp;quot;&amp;gt;SIDEBAR&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;	&amp;lt;div&amp;gt;&lt;br /&gt;	&amp;lt;div id=&amp;quot;footer&amp;quot;&amp;gt;FOOTER&lt;br /&gt;	&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;h3&gt;STEP 3&lt;/h3&gt;
&lt;p&gt;Now let&amp;#39;s create the CSS. You may use the text/CSS editor of your choice. We&amp;#39;re using here &lt;a href=&quot;http://www.macrabbit.com/cssedit/&quot; target=&quot;_blank&quot;&gt;CSSEdit&lt;/a&gt;, and we&amp;#39;re going to open Live Preview. With that, we&amp;#39;ll be able to view in real time the things we are modifying. Notice that the structure is really simple. We&amp;#39;re inserting a body &lt;b&gt;#total&lt;/b&gt; with &lt;b&gt;&amp;quot;margin: 0 auto&amp;quot;&lt;/b&gt; and all the other elements inside it.&lt;/p&gt;
&lt;pre&gt;    body {&lt;br /&gt;        margin: 0;&lt;br /&gt;        color: #999;&lt;br /&gt;        font-weight: bold;&lt;br /&gt;        font-family: &amp;quot;Helvetica Neue&amp;quot;, Arial, Helvetica, Geneva, sans-serif;&lt;br /&gt;        font-size: 2em;&lt;br /&gt;        background: #01245c url(bg_obama.jpg) no-repeat center top; &lt;br /&gt;    }&lt;br /&gt;	&lt;br /&gt;&lt;b&gt;&lt;b&gt;	// AQUI ESTÁ NOSSO BG! &lt;br /&gt;&lt;/b&gt;	&lt;/b&gt;&lt;b&gt;// Repare também que usamos a cor #01245C.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;    #total {&lt;br /&gt;        width: 960px;&lt;br /&gt;        margin: 0 auto;&lt;br /&gt;    }&lt;br /&gt;    #header {&lt;br /&gt;	   height: 160px;&lt;br /&gt;   }&lt;br /&gt;      #header img{&lt;br /&gt;          border: 0;&lt;br /&gt;      }&lt;br /&gt;  #menu {&lt;br /&gt;      height: 60px;&lt;br /&gt;      background: #FFF;&lt;br /&gt;      text-align: center;&lt;br /&gt;      line-height: 60px;&lt;br /&gt;  }  &lt;br /&gt;  #main {&lt;br /&gt;      float: left;&lt;br /&gt;      width: 650px;&lt;br /&gt;      background: #f0f0f0;&lt;br /&gt;      height: 400px;&lt;br /&gt;      text-align: center;&lt;br /&gt;      padding-top: 100px;&lt;br /&gt;  }&lt;br /&gt;  #sidebar {&lt;br /&gt;      float: right;&lt;br /&gt;      width: 310px;&lt;br /&gt;      background: #dadada;&lt;br /&gt;      height: 400px;&lt;br /&gt;      text-align: center;&lt;br /&gt;      padding-top: 100px;&lt;br /&gt;  }&lt;br /&gt;  #footer {&lt;br /&gt;      height: 150px;&lt;br /&gt;      text-align: center;&lt;br /&gt;      padding-top: 50px;&lt;br /&gt;      clear: both;&lt;br /&gt;      color: #15539c;&lt;br /&gt;  }&lt;br /&gt;&lt;/pre&gt;&lt;h3&gt;STEP 4&lt;/h3&gt;
&lt;p&gt;Check the final result... really simple, huh? You only have to structure well the code and practice!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://zee.com.br/files/tutorials/obama_css/obama.html&quot;&gt;&lt;img src=&quot;http://zee.com.br/files/tutorials/obama_css/images/tut_obama_2ing.jpg&quot; title=&quot;Tutorial Obama Parte 2&quot; class=&quot;img&quot; alt=&quot;Tutorial Obama Parte 2&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;I&#039;m from Brazil, co-founder of &lt;a href=&quot;http://zee.com.br&quot;&gt;Zee&lt;/a&gt; with Fabio. Nowadays I like to play with Fireworks, Photoshop and improve my skills in CSS. If you wanna request some posts, please feel free to &lt;a href=&quot;mailto:fabiano@zee.com.br&quot;&gt;contact me&lt;/a&gt; or follow on &lt;a href=&quot;http://twitter.com/FabianoMe&quot;&gt;Twitter&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-7649048507452478&quot;;
/* 468x60 */
google_ad_slot = &quot;2984698263&quot;;
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
     <comments>http://abduzeedo.com/tutorial-obamas-background-css-part-2#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tags/fireworks">fireworks</category>
 <category domain="http://abduzeedo.com/tutorials">tutorial</category>
 <pubDate>Fri, 25 Apr 2008 11:16:02 +0000</pubDate>
 <dc:creator>fabiano</dc:creator>
 <guid isPermaLink="false">318 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>Testing sites in different browsers</title>
    <link>http://abduzeedo.com/testing-sites-different-browsers</link>
    <description>&lt;h3&gt;I&amp;#39;ve been working on several projects for the web lately and I have always had to test them in several browsers. That could be very frustrating most of the times, mainly because as a Mac user I must test them every time on Windows and Internet Explorer 6 and 7.&lt;/h3&gt;
&lt;p&gt;With virtualization tools like &lt;a href=&quot;http://www.vmware.com/&quot; title=&quot;Link to the vmware website&quot;&gt;VMWare&lt;/a&gt;, &lt;a href=&quot;http://www.parallels.com/&quot; title=&quot;Link to the Parallels website&quot;&gt;Parallels&lt;/a&gt;, &lt;a href=&quot;http://www.virtualbox.org/&quot; title=&quot;Link to the Virtualbox website&quot;&gt;Virtualbox&lt;/a&gt; and others I thought my problems would have ended. Of course that big concern of testing in a PC ended, now I’m able to open Windows and test my sites in IE 6 and 7. However my machine gets really slow, some times freezes, what makes the user experience a bit disappointing.&lt;/p&gt;
&lt;p&gt;Fortunately, after some searches I came across with this really useful website called &lt;a href=&quot;http://ipinfo.info/netrenderer/index.php&quot; title=&quot;Link to the IE NetRender website&quot;&gt;IE NetRender,&lt;/a&gt; where allows you to check how a website is rendered by &lt;b&gt;Internet Explorer 7&lt;/b&gt;, &lt;b&gt;6&lt;/b&gt; or &lt;b&gt;5.5&lt;/b&gt;,&lt;br /&gt;
&lt;blockquote&gt;This web rendering tool is ideally suited for web designers working on Apple iMac and Linux workstations. It allows to verify web designs natively on all popular Internet Explorer versions, without the need to set aside several physical or virtual Microsoft Windows PCs just for that purpose.&lt;/blockquote&gt;&lt;/p&gt;
&lt;p&gt;It’s definitely worth checking that out. An essential tool for those who work as web designers. &lt;/p&gt;
&lt;p&gt;I captured some screens of my site rendered by IE 7 and 5.5 via IE NetRender, you can check the photos below.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/files/u1/abduzeedo_ie7.jpg&quot; width=&quot;500&quot; height=&quot;396&quot; alt=&quot;Abduzeedo blog rendered in IE 7 via IE NetRender&quot; title=&quot;Abduzeedo blog rendered in IE 7 via IE NetRender&quot; class=&quot;img&quot; /&gt;&lt;br /&gt;&lt;cite&gt;Abduzeedo blog rendered in IE 7 via IE NetRender&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/files/u1/abduzeedo_ie55.jpg&quot; width=&quot;500&quot; height=&quot;394&quot; alt=&quot;Abduzeedo blog rendered in IE 5.5 via IE NetRender&quot; title=&quot;Abduzeedo blog rendered in IE 5.5 via IE NetRender&quot; class=&quot;img&quot; /&gt;&lt;br /&gt;&lt;cite&gt;Abduzeedo blog rendered in IE 55 via IE NetRender&lt;/cite&gt;&lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Abduzeedo is a blog about design. There are all sorts of articles for those who want to look for inspiration. Also you will find very useful tutorials for the most used applications out there, with a special selection of Photoshop Tutorials and Illustrator Tutorials. You can get in follow us via Twitter at &lt;a href=&quot;http://twitter.com/abduzeedo&quot;&gt;@abduzeedo&lt;/a&gt;  &lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-7764262396280460&quot;;
/* Author 336x280 */
google_ad_slot = &quot;0020356584&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;</description>
     <comments>http://abduzeedo.com/testing-sites-different-browsers#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tags/internet-explorer">internet explorer</category>
 <category domain="http://abduzeedo.com/tags/web-0">web</category>
 <category domain="http://abduzeedo.com/tags/web-20">web 2.0</category>
 <pubDate>Wed, 27 Jun 2007 14:28:40 +0000</pubDate>
 <dc:creator>abduzeedo</dc:creator>
 <guid isPermaLink="false">150 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>Wedeed logo</title>
    <link>http://abduzeedo.com/wedeed-logo</link>
    <description>&lt;h3&gt;Lately I have been working with my brother on a promising project. Actually I shouldn’t even been talking about that now, but it’s necessary to say some things. Basically it’s all about CSS, it’s really cool, and it&amp;#39;s called &lt;a href=&quot;http://www.wedeed.com&quot;&gt;Wedeed&lt;/a&gt;.&lt;/h3&gt;
&lt;p&gt; Anyway, what he asked me to do was the logo and later its GUI. &lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;“Well, you don&amp;#39;t need to hire any creative designers for making those web 2.0 style logos for your blog - just follow any of these tutorials. And if you hate reading instructions in text, head straight to the video tutorial.“&lt;br /&gt;
  &lt;cite&gt;&lt;a href=&quot;http://labnol.blogspot.com/2006/11/logo-tutorials-design-web-20-style.html&quot;&gt;http://labnol.blogspot.com/2006/11/logo-tutorials-design-web-20-style.html&lt;/a&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It’s amazing the number of tutorials showing how to create a web 2.0 logo, actually, there are really good tutorials, but almost all of them showing us how to create those web 2.0 effects, rather than how to come up with a good idea, and that was I was looking for.&lt;/p&gt;
&lt;p&gt; For this logo our goals was to create a really simple logo, easy to understand, web 2.0, and beautiful. &lt;/p&gt;
&lt;p&gt; &lt;b&gt;1 - We follow some ideas like:&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt; Cascading&lt;/li&gt;
&lt;li&gt; Pages&lt;/li&gt;
&lt;li&gt; Separate design from data&lt;/li&gt;
&lt;li&gt; Different Colors&lt;/li&gt;
&lt;li&gt; Simple typeface&lt;/li&gt;
&lt;li&gt; Flipping pages
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;b&gt;2 - Definitions&lt;/b&gt; &lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt; A Cascading Style Sheet (CSS) provides the ability to separate the layout and styles of a web page from the data or information. Styles such as fonts, font sizes, margins, can be specified in one place, then the Web pages feed off this one master list, with the styles cascading throughout the page or an entire site.&lt;br /&gt;
    &lt;cite&gt;&lt;a href=&quot;http://www.liv.ac.uk/webteam/glossary/&quot;&gt;www.liv.ac.uk/webteam/glossary/&lt;/a&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/u1/css.gif&quot; alt=&quot;The idea of CSS, separet design from data&quot; class=&quot;img&quot; height=&quot;298&quot; width=&quot;490&quot; /&gt;&lt;br /&gt;
&lt;cite&gt;How CSS works&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;3 - Some inspiration: &lt;/b&gt;What people have been doing.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/u1/logos_bunch.jpg&quot; alt=&quot;Lots of web 2.0 logos&quot; class=&quot;img&quot; height=&quot;300&quot; width=&quot;490&quot; /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.flickr.com/photos/stabilo-boss/93136022/&quot;&gt;http://www.flickr.com/photos/stabilo-boss/93136022/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.flickr.com/photos/stabilo-boss/101793494/&quot;&gt;http://www.flickr.com/photos/stabilo-boss/101793494/&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;b&gt;3 - My ideas:&lt;/b&gt; The idea of layers perfectly represents the separation of the design from the data.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/u1/logos_inspiration.jpg&quot; alt=&quot;Some images for inspirations&quot; class=&quot;img&quot; height=&quot;300&quot; width=&quot;490&quot; /&gt;&lt;br /&gt;
  &lt;cite&gt;Looking for some references and inspiration, nothing like google images and flickr&lt;/cite&gt;&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/u1/firstTests.gif&quot; alt=&quot;My first digital tests&quot; class=&quot;img&quot; height=&quot;231&quot; width=&quot;490&quot; /&gt;&lt;br /&gt;
&lt;cite&gt;Some of the initial digital tests&lt;/cite&gt; &lt;/p&gt;
&lt;p&gt;&lt;b&gt;4 - Fonts of the web 2:&lt;/b&gt; There are really great sites showing examples, though I think the simplest the best.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u1/adjs1.gif&quot; alt=&quot;Font variations, colors and alignments&quot; class=&quot;img&quot; height=&quot;308&quot; width=&quot;490&quot; /&gt;&lt;br /&gt;
&lt;cite&gt;Font variations, colors and alignments&lt;/cite&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.modernlifeisrubbish.co.uk/article/great-fonts-for-web-2.0&quot;&gt;Great fonts for web 2.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.fontshop.com/fontfeed/archives/web-20-logos.cfm&quot;&gt;Web 2.0 logos(fontshop)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.andybudd.com/sxsw07/web20.pdf&quot;&gt;Andy Budd&amp;#39;s SXSW keynote&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;b&gt;6 - Adjustments:&lt;/b&gt; Some adjustments in the perspective, testing opacities and effects.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/u1/logoVar.gif&quot; alt=&quot;Trying some colors and opacities&quot; class=&quot;img&quot; height=&quot;400&quot; width=&quot;490&quot; /&gt;&lt;br /&gt;
&lt;cite&gt;Trying some colors and opacities&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;5 - Final Result:&lt;/b&gt; Pretty much the simplest version of them all.&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/u1/final.gif&quot; alt=&quot;KISS = Keep it simple and stupid&quot; class=&quot;img&quot; height=&quot;300&quot; width=&quot;490&quot; /&gt;&lt;/p&gt;
&lt;div class=&quot;field field-type-filefield field-field-image&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    &lt;div class=&quot;filefield-file&quot;&gt;&lt;img class=&quot;filefield-icon field-icon-image-gif&quot;  alt=&quot;image/gif icon&quot; src=&quot;http://www.abduzeedo.com.br/sites/all/modules/filefield/icons/image-x-generic.png&quot; /&gt;&lt;a href=&quot;http://www.abduzeedo.com.br/files/wedeed-logo.gif&quot; type=&quot;image/gif; length=10359&quot; title=&quot;wedeed-logo.gif&quot;&gt;Wedeed logo&lt;/a&gt;&lt;/div&gt;        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Abduzeedo is a blog about design. There are all sorts of articles for those who want to look for inspiration. Also you will find very useful tutorials for the most used applications out there, with a special selection of Photoshop Tutorials and Illustrator Tutorials. You can get in follow us via Twitter at &lt;a href=&quot;http://twitter.com/abduzeedo&quot;&gt;@abduzeedo&lt;/a&gt;  &lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-7764262396280460&quot;;
/* Author 336x280 */
google_ad_slot = &quot;0020356584&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;</description>
     <comments>http://abduzeedo.com/wedeed-logo#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tags/design">design</category>
 <category domain="http://abduzeedo.com/tags/logos">logos</category>
 <category domain="http://abduzeedo.com/tags/web-20">web 2.0</category>
 <pubDate>Wed, 14 Mar 2007 11:22:33 +0000</pubDate>
 <dc:creator>abduzeedo</dc:creator>
 <guid isPermaLink="false">132 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>Creating a web 2.0 blog - part 2</title>
    <link>http://abduzeedo.com/creating-web-20-blog-part-2</link>
    <description>&lt;p&gt;Here we go again, continuing the creation of my brother&amp;#39;s blog, Blackbelt. Fixing some design issues and creating the XHTML and CSS template.&lt;/p&gt;
&lt;h3&gt;Design Changes &lt;/h3&gt;
&lt;p&gt;My brother had asked for some minor changes on the design of the blog, mainly in the sidebar, where he hadn&amp;#39;t liked the round corners tha I had done, although he said he really liked the feeds&amp;#39; box which was black.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/files/u1/feeds.gif&quot; alt=&quot;Feeds&#039; box, darker and with round corners&quot; class=&quot;img&quot; height=&quot;150&quot; width=&quot;490&quot; /&gt;&lt;br /&gt; &lt;cite&gt;Feeds&amp;#39; box, darker and with round corners&lt;/cite&gt; &lt;/p&gt;
&lt;p&gt;The new sidebar was created using the same style of the feeds&amp;#39; box, but lighter. &lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/files/u1/naviNew.gif&quot; alt=&quot;Feeds&#039; box, darker and with round corners&quot; class=&quot;img&quot; height=&quot;150&quot; width=&quot;490&quot; /&gt;&lt;br /&gt;   &lt;cite&gt;Using different style for visited links, however IE6 doens&amp;#39;t do that.&lt;/cite&gt;&lt;/p&gt;
&lt;h3&gt;XHTML and CSS  &lt;/h3&gt;
&lt;p&gt;Using the basic XHTML generated by the Apache Roller, the blog engine that my brother uses, I started creating the CSS. &lt;/p&gt;
&lt;p&gt;After a couple of hours everything was pretty much done and working fine, however there were some problems to be fixed with .png images and the box model under Internet Explorer 6. &lt;/p&gt;
&lt;p&gt;With everything fixed, the template is done, working fine in all the major browsers: IE 6 &amp;amp;7, Firefox, Safari and Opera. If you want to take a look you can download all files that I have used so far. &lt;/p&gt;
&lt;div class=&quot;field field-type-filefield field-field-image&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    &lt;div class=&quot;filefield-file&quot;&gt;&lt;img class=&quot;filefield-icon field-icon-image-png&quot;  alt=&quot;image/png icon&quot; src=&quot;http://www.abduzeedo.com.br/sites/all/modules/filefield/icons/image-x-generic.png&quot; /&gt;&lt;a href=&quot;http://www.abduzeedo.com.br/files/originals/blackbelt_blog_0.png&quot; type=&quot;image/png; length=177039&quot;&gt;blackbelt_blog.png&lt;/a&gt;&lt;/div&gt;        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;table id=&quot;attachments&quot; class=&quot;sticky-enabled&quot;&gt;
 &lt;thead&gt;&lt;tr&gt;&lt;th&gt;Attachment&lt;/th&gt;&lt;th&gt;Size&lt;/th&gt; &lt;/tr&gt;&lt;/thead&gt;
&lt;tbody&gt;
 &lt;tr class=&quot;odd&quot;&gt;&lt;td&gt;&lt;a href=&quot;http://www.abduzeedo.com.br/files/index.html&quot;&gt;index.html&lt;/a&gt;&lt;/td&gt;&lt;td&gt;12.11 KB&lt;/td&gt; &lt;/tr&gt;
 &lt;tr class=&quot;even&quot;&gt;&lt;td&gt;&lt;a href=&quot;http://www.abduzeedo.com.br/files/screen.css&quot;&gt;screen.css&lt;/a&gt;&lt;/td&gt;&lt;td&gt;4.13 KB&lt;/td&gt; &lt;/tr&gt;
 &lt;tr class=&quot;odd&quot;&gt;&lt;td&gt;&lt;a href=&quot;http://www.abduzeedo.com.br/files/images.zip&quot;&gt;images.zip&lt;/a&gt;&lt;/td&gt;&lt;td&gt;46.94 KB&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Abduzeedo is a blog about design. There are all sorts of articles for those who want to look for inspiration. Also you will find very useful tutorials for the most used applications out there, with a special selection of Photoshop Tutorials and Illustrator Tutorials. You can get in follow us via Twitter at &lt;a href=&quot;http://twitter.com/abduzeedo&quot;&gt;@abduzeedo&lt;/a&gt;  &lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-7764262396280460&quot;;
/* Author 336x280 */
google_ad_slot = &quot;0020356584&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;</description>
     <comments>http://abduzeedo.com/creating-web-20-blog-part-2#comments</comments>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tutorials">tutorial</category>
 <category domain="http://abduzeedo.com/tags/web-20">web 2.0</category>
 <enclosure url="http://www.abduzeedo.com.br/files/index.html" length="12401" type="text/html" />
 <pubDate>Thu, 04 Jan 2007 10:24:24 +0000</pubDate>
 <dc:creator>abduzeedo</dc:creator>
 <guid isPermaLink="false">51 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>Creating a web 2.0 blog</title>
    <link>http://abduzeedo.com/creating-web-20-blog</link>
    <description>&lt;p&gt;Throughout this article I will illustrate the creation of a weblog with the web 2.0 style. From the briefing to the CSS development. &lt;/p&gt;
&lt;h3&gt;Guidelines&lt;/h3&gt;
&lt;p&gt;The blog will be created to my brother who had asked me to do that, besides, he gave me some guidelines of some design aspects that he would like to have in his blog:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Dark background;&lt;/li&gt;
&lt;li&gt;big font sizes;&lt;/li&gt;
&lt;li&gt;some round corners;&lt;/li&gt;
&lt;li&gt;a place to put some logos;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Also he send me some links of site that he thinks are really cool, below there are some of them. &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;/www.37signals.com/&quot; title=&quot;37Signals&quot;&gt;&lt;img src=&quot;/files/images/37signal.gif&quot; alt=&quot;37Signals&quot; class=&quot;imgT&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;/www.bartelme.at/&quot; title=&quot;Bartelme Design&quot;&gt;&lt;img src=&quot;/files/images/bartelme.gif&quot; class=&quot;imgT&quot; alt=&quot;Bartelme Design&quot; border=&quot;0&quot; height=&quot;150&quot; width=&quot;220&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.emaginacion.com.ar/cym/&quot; title=&quot;Clear your mind blog&quot;&gt;&lt;img src=&quot;/files/images/clear.gif&quot; class=&quot;imgT&quot; alt=&quot;Clear your mind blog&quot; border=&quot;0&quot; height=&quot;150&quot; width=&quot;220&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://veerle.duoh.com/&quot; title=&quot;Veerle&#039;s blog&quot;&gt;&lt;img src=&quot;/files/images/veerle.gif&quot; class=&quot;imgT&quot; alt=&quot;Veerle&#039;s blog&quot; border=&quot;0&quot; height=&quot;150&quot; width=&quot;220&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Research&lt;/h3&gt;
&lt;p&gt;With the guidelines and some references in mind I started my research and found some good links about designing web 2.0 style sites such as this &lt;a href=&quot;http://www.webdesignfromscratch.com/web-2.0-design-style-guide.cfm&quot; title=&quot;Web 2.0 how-to design style guide&quot;&gt;Web 2.0 how-to design style guide&lt;/a&gt;, which explains really well the web 2.0 features showing examples of sites, concepts and what not to do.&lt;/p&gt;
&lt;p&gt;After reading a lot of site and got some good insights I became the creation of the layout, first the idea of columns, where the navigation will be, the main content, and stuff like that. Talking to my brother, he said that he would like to have a vertical navigation with a sidebar where he could add his favorite links, search, the blog&amp;#39;s navigation, flickr photos, delicious bookmarks and etc... so I came up with a pretty simple wire frame.&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;/files/images/wireframe.gif&quot; class=&quot;img&quot; alt=&quot;Wire frame of the blog&quot; height=&quot;300&quot; width=&quot;220&quot; /&gt;&lt;br /&gt; &lt;cite&gt;Wireframe of the blog, liquid layout&lt;/cite&gt;&lt;/p&gt;
&lt;h3&gt;Layout creation &lt;/h3&gt;
&lt;p&gt;With the wire frame done I knew where to put the content, so I had to start adding &lt;b&gt;&lt;i&gt;loren ipsun content&lt;/i&gt;&lt;/b&gt; there. One thing that I think is really cool on the web 2.0 trend is the gradients, they create a really cool visual effect of difference on planes, elevating some parts and put some in a lower level. Another cool effect that I have already used on a personal project and I thought would be cool is that &amp;quot;emboss effect&amp;quot; in lines that divide content as Bartelme uses in his site. The dark color and the variation of them are a feature to be exploited. &lt;/p&gt;
&lt;p&gt;For the header I thought that would be nice to add an illustration or a photo like Veerle does.  I start thinking which photo would be cool, looking for the right shot I remember that my brother had taken one pretty cool in Philadelphia in front of that Metropolitan Art Museum where Rocky Balboa always finished his training, as my brother loves Rocky and with the new movie coming to the theaters, I thought that image would fit like a glove. &lt;/p&gt;
&lt;p&gt;After all of that and several hours in front of my computer using Macromedia Fireworks I came up with the layout below. &lt;a href=&quot;/files/images/BLK.jpg&quot; target=&quot;_blank&quot;&gt;Click here to open the real size version in a new window&lt;/a&gt; &lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;/files/images/BLK_thumb.jpg&quot; class=&quot;img&quot; alt=&quot;Layout of the blog, click here to open in a new window&quot; height=&quot;613&quot; width=&quot;350&quot; /&gt;&lt;br /&gt; &lt;cite&gt;The layout, round corner in some parts, gradients, pretty much everything&lt;/cite&gt;&lt;/p&gt;
&lt;p align=&quot;left&quot;&gt;Showing to my brother, he said that he liked it a lot but that there were some issues to be fixed. However he hasn&amp;#39;t told me them yet. So the only thing that I can do now is wait, and as soon as he point the issues and we fix them, I will continue this article until the CSS is done.&lt;/p&gt;
&lt;div class=&quot;field field-type-filefield field-field-image&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    &lt;div class=&quot;filefield-file&quot;&gt;&lt;img class=&quot;filefield-icon field-icon-image-png&quot;  alt=&quot;image/png icon&quot; src=&quot;http://www.abduzeedo.com.br/sites/all/modules/filefield/icons/image-x-generic.png&quot; /&gt;&lt;a href=&quot;http://www.abduzeedo.com.br/files/originals/blackbelt_blog.png&quot; type=&quot;image/png; length=177039&quot;&gt;blackbelt_blog.png&lt;/a&gt;&lt;/div&gt;        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;table id=&quot;attachments&quot; class=&quot;sticky-enabled&quot;&gt;
 &lt;thead&gt;&lt;tr&gt;&lt;th&gt;Attachment&lt;/th&gt;&lt;th&gt;Size&lt;/th&gt; &lt;/tr&gt;&lt;/thead&gt;
&lt;tbody&gt;
 &lt;tr class=&quot;odd&quot;&gt;&lt;td&gt;&lt;a href=&quot;http://www.abduzeedo.com.br/files/blog.png&quot;&gt;blog.png&lt;/a&gt;&lt;/td&gt;&lt;td&gt;2.5 MB&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Abduzeedo is a blog about design. There are all sorts of articles for those who want to look for inspiration. Also you will find very useful tutorials for the most used applications out there, with a special selection of Photoshop Tutorials and Illustrator Tutorials. You can get in follow us via Twitter at &lt;a href=&quot;http://twitter.com/abduzeedo&quot;&gt;@abduzeedo&lt;/a&gt;  &lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-7764262396280460&quot;;
/* Author 336x280 */
google_ad_slot = &quot;0020356584&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;</description>
     <comments>http://abduzeedo.com/creating-web-20-blog#comments</comments>
 <category domain="http://abduzeedo.com/tags/blog">blog</category>
 <category domain="http://abduzeedo.com/tags/css">css</category>
 <category domain="http://abduzeedo.com/tutorials">tutorial</category>
 <category domain="http://abduzeedo.com/tags/web-20">web 2.0</category>
 <enclosure url="http://www.abduzeedo.com.br/files/blog.png" length="2619327" type="image/png" />
 <pubDate>Thu, 28 Dec 2006 11:08:12 +0000</pubDate>
 <dc:creator>abduzeedo</dc:creator>
 <guid isPermaLink="false">34 at http://www.abduzeedo.com.br</guid>
  </item>
  <item>
    <title>10 Years of CSS</title>
    <link>http://abduzeedo.com/node/14</link>
    <description>&lt;p&gt;In 2006 CSS celebrates its 10th anniversary. What does that mean? CSS has changed the way web designers create their sites, separating Markup from presentation, benefitting designer and uses alike.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;The design community has confirmed that using CSS promotes beauty while making it easier and less expensive to build sites, ”&lt;cite&gt;Bert Bos, W3C Style Activity Lead&lt;/cite&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;The W3C published on their website an article about the CSS&amp;#39; 10th anniversary, where they list some benefits to designers when using CSS.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Rich feature set&lt;/li&gt;
&lt;li&gt;Reuse&lt;/li&gt;
&lt;li&gt;Accessibility&lt;/li&gt;
&lt;li&gt;Cross-media publishing&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Well, everybody knows that there are some issues with cross browser style yet. Ok it has more to do with Microsoft and Internet Explorer, but for me CSS has made my life much more easier and pleasant.&lt;/p&gt;
&lt;p&gt;Below, some links related to this post:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.w3.org/Style/CSS10/&quot;&gt;http://www.w3.org/Style/CSS10/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.w3.org/2006/12/css10-pressrelease.html&quot;&gt;http://www.w3.org/2006/12/css10-pressrelease.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Abduzeedo is a blog about design. There are all sorts of articles for those who want to look for inspiration. Also you will find very useful tutorials for the most used applications out there, with a special selection of Photoshop Tutorials and Illustrator Tutorials. You can get in follow us via Twitter at &lt;a href=&quot;http://twitter.com/abduzeedo&quot;&gt;@abduzeedo&lt;/a&gt;  &lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-7764262396280460&quot;;
/* Author 336x280 */
google_ad_slot = &quot;0020356584&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;&lt;/div&gt;</description>
     <category domain="http://abduzeedo.com/tags/css">css</category>
 <pubDate>Wed, 20 Dec 2006 08:49:11 +0000</pubDate>
 <dc:creator>abduzeedo</dc:creator>
 <guid isPermaLink="false">14 at http://www.abduzeedo.com.br</guid>
  </item>
  </channel>
</rss>

