<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Flavio Muniz &#187; css</title>
	<atom:link href="http://flaviomuniz.com/blog/tag/css/feed" rel="self" type="application/rss+xml" />
	<link>http://flaviomuniz.com/blog</link>
	<description>simple thus - fast and agile development</description>
	<lastBuildDate>Wed, 09 May 2012 16:53:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Grid system using css</title>
		<link>http://flaviomuniz.com/blog/grid-system-using-css.html</link>
		<comments>http://flaviomuniz.com/blog/grid-system-using-css.html#comments</comments>
		<pubDate>Wed, 20 Jul 2011 03:57:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[sass]]></category>
		<category><![CDATA[scss]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=93</guid>
		<description><![CDATA[Hello, I discovered this some time in css grid system that has helped me a lot in the projects. A simple grid that will help you also in all the projects that can dynamically display columns without breaking the layout and always keeping the same pattern. Below, I &#8230; <a href="http://flaviomuniz.com/blog/grid-system-using-css.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello, I discovered this some time in css grid system that has helped me a lot in the projects.</p>
<p>A simple grid that will help you also in all the projects that can dynamically display columns<br />
without breaking the layout and always keeping the same pattern.</p>
<p>Below, I will show how simple it is to use this grid system.</p>
<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.32.35-AM.png"><img class="aligncenter size-full wp-image-95" title="Screen shot 2011-07-20 at 12.32.35 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.32.35-AM.png" alt="" width="335" height="197" /></a><br />
The result using values ??above this will be clear that the scale of the site, 960px and 940 total area used.<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.34.27-AM.png"><img class="aligncenter size-full wp-image-96" title="Screen shot 2011-07-20 at 12.34.27 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.34.27-AM.png" alt="" width="977" height="414" /></a><br />
Now the css generated the grid will look like.<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.36.06-AM.png"><img class="aligncenter size-full wp-image-98" title="Screen shot 2011-07-20 at 12.36.06 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.36.06-AM.png" alt="" width="972" height="436" /></a> The css generated by grid 1</p>
<pre class="brush: css;">body{min-width:960px;}
.container_3{margin-left:auto;margin-right:auto;width:960px;}
.grid_1,.grid_2,.grid_3{display:inline;float:left;position:relative;margin-left:10px;margin-right:10px;}
.push_1,.pull_1,.push_2,.pull_2,.push_3,.pull_3{position:relative;}
.alpha{margin-left:0;}
.omega{margin-right:0;}
.container_3 .grid_1{width:300px;}
.container_3 .grid_2{width:620px;}
.container_3 .grid_3{width:940px;}
.container_3 .prefix_1{padding-left:320px;}
.container_3 .prefix_2{padding-left:640px;}
.container_3 .suffix_1{padding-right:320px;}
.container_3 .suffix_2{padding-right:640px;}
.container_3 .push_1{left:320px;}
.container_3 .push_2{left:640px;}
.container_3 .pull_1{left:-320px;}
.container_3 .pull_2{left:-640px;}
.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:before,.clearfix:after{content:'\0020';display:block;
overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:after{clear:both;}
.clearfix{zoom:1;}</pre>
<p>In the case of a site that will use all the useful area of the monitor had been so.<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.37.53-AM.png"><img class="size-full wp-image-100 aligncenter" title="Screen shot 2011-07-20 at 12.37.53 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.37.53-AM.png" alt="" width="1768" height="440" /></a><br />
The css generated by grid 2 &#8216;fluid&#8217;</p>
<pre class="brush: css;">.container_3{width:92%;margin-left:4%;margin-right:4%;}
.grid_1,.grid_2,.grid_3{display:inline;float:left;position:relative;margin-left:1%;margin-right:1%;}
.alpha{margin-left:0;}
.omega{margin-right:0;}
.container_3 .grid_1{width:31.333%;}
.container_3 .grid_2{width:64.667%;}
.container_3 .grid_3{width:98%;}
.container_3 .prefix_1{padding-left:33.333%;}
.container_3 .prefix_2{padding-left:66.667%;}
.container_3 .suffix_1{padding-right:33.333%;}
.container_3 .suffix_2{padding-right:66.667%;}
.container_3 .push_1{left:33.333%;}
.container_3 .push_2{left:66.667%;}
.container_3 .pull_1{left:-33.333%;}
.container_3 .pull_2{left:-66.667%;}
.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:after{clear:both;content:' ';display:block;font-size:0;line-height:0;
visibility:hidden;width:0;height:0;}
.clearfix{display:block;}
* html .clearfix{height:1%;}</pre>
<p><a href="http://960.gs/" target="_blank">960grid</a> | <a href="http://grids.heroku.com/" target="_blank">Custom css Grid</a> | <a href="http://grids.heroku.com/grid?column_width=300&amp;column_amount=3&amp;gutter_width=20" target="_blank">Example 1</a> | <a href="http://grids.heroku.com/fluid_grid?column_amount=3" target="_blank">Example 2</a></p>
<p>Examples of sites using grid system.</p>
<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.52.00-AM.png"><img class="aligncenter size-full wp-image-114" title="Screen shot 2011-07-20 at 12.52.00 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.52.00-AM.png" alt="" width="950" height="452" /></a></p>
<p>Highlight grid<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.52.08-AM.png"><img class="aligncenter size-full wp-image-115" title="Screen shot 2011-07-20 at 12.52.08 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.52.08-AM.png" alt="" width="947" height="452" /></a></p>
<hr />
<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.51.28-AM.png"><img class="aligncenter size-full wp-image-112" title="Screen shot 2011-07-20 at 12.51.28 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.51.28-AM.png" alt="" width="946" height="454" /></a></p>
<p>Highlight grid<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.51.35-AM.png"><img class="aligncenter size-full wp-image-113" title="Screen shot 2011-07-20 at 12.51.35 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.51.35-AM.png" alt="" width="933" height="455" /></a></p>
<p>More examples in <a href="http://960.gs" target="_blank">960.gs</a></p>
<p>[fblikebutton]</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/grid-system-using-css.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery vs Flash 2</title>
		<link>http://flaviomuniz.com/blog/jquery-vs-flash-2.html</link>
		<comments>http://flaviomuniz.com/blog/jquery-vs-flash-2.html#comments</comments>
		<pubDate>Sat, 28 May 2011 18:13:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=23</guid>
		<description><![CDATA[Hi, this is a simple animation using jquery. Some time ago, I worked in an agency that has developed a giant touchscreen panel for a client, took about three months to develop, when I read the documentation, I said, I &#8230; <a href="http://flaviomuniz.com/blog/jquery-vs-flash-2.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi, this is a simple animation using jquery.</p>
<p>Some time ago, I worked in an agency that has developed a giant touchscreen panel for a client, took about three months to develop, when I read the documentation, I said, I can do this with jquery, and not using flash , as the developer was a major flash-known owner of the agency, he decided to do in flash, well, were the nights of sleep lost to development, occurred at the end almost everything right, finally.</p>
<p>I left that agency, and decided to develop the same project using jquery, of course not had the patience to develop 100%, just wanted to show what was possible, did the main part of the project that was user interaction with the virtual beach. As you can see in the example below.</p>
<p>I will still finish the entire project, but that is for a next time.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://flaviomuniz.com/beach"><img class="aligncenter size-full wp-image-24" title="jquervsflash2" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/05/jquervsflash2.jpg" alt="" width="539" height="249" /></a></p>
<p>&nbsp;</p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 16.0px Arial} -->The project in flash was really good, but wanted to show that there are other possibilities.</p>
<p>And congratulations to the agency for this great achievement.</p>
<p>[fblikebutton]</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/jquery-vs-flash-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery vs Flash</title>
		<link>http://flaviomuniz.com/blog/jquery-vs-flash.html</link>
		<comments>http://flaviomuniz.com/blog/jquery-vs-flash.html#comments</comments>
		<pubDate>Sat, 28 May 2011 18:01:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=18</guid>
		<description><![CDATA[Hi, this is a simple example that it is possible to create animated applications using jquery and not flash. This was a wedding gift from a friend of mine. [fblikebutton]]]></description>
			<content:encoded><![CDATA[<p>Hi, this is a simple example that it is possible to create animated applications using jquery and not flash.</p>
<p>This was a wedding gift from a friend of mine.</p>
<p><a href="flaviomuniz.com/jquery-vs-flash/" target="blank"><img class="size-full wp-image-19 aligncenter" title="Roberta &amp; Gustavo" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/05/gunassif.jpg" alt="Roberta &amp; Gustavo" width="539" height="249" /></a></p>
<p>[fblikebutton]</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/jquery-vs-flash.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

