    <?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>Balbu Web Solutions &#187; css</title>
	<atom:link href="http://bws.balbu.eu/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://bws.balbu.eu</link>
	<description>Our values are what the clients feel value. We have a creative team, but we always keep in mind what our clients want. We always try to improve our skills and we can use the latest techniques, but we won’t drop the long standing way to be successfull. Our main goal is to build sites where the needs and the working solutions can meet for the satisfaction of the client.</description>
	<lastBuildDate>Fri, 10 Jan 2014 06:09:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Make picture desaturate with pure CSS</title>
		<link>http://bws.balbu.eu/make-picture-desaturate-with-pure-css/</link>
		<comments>http://bws.balbu.eu/make-picture-desaturate-with-pure-css/#comments</comments>
		<pubDate>Fri, 19 Apr 2013 10:50:47 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[bws]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[desaturate]]></category>
		<category><![CDATA[fedaein]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=278</guid>
		<description><![CDATA[In the BWS developing process, I had to make the images desaturate and then fade them to color at hover. It is possible to make without javascript, only have to use filter and CSS transitions. How it is possible? First, we have to style the image for it&#8217;s final place, and then the magic happens: [...]]]></description>
				<content:encoded><![CDATA[<p>In the BWS developing process, I had to make the images desaturate and then fade them to color at hover. It is possible to make without javascript, only have to use filter and CSS transitions.</p>
<p>How it is possible? First, we have to style the image for it&#8217;s final place, and then the magic happens: we can use a desaturate filter for the images, and for hover, we can make it to fade in with CSS transitions.</p>
<p><span id="more-278"></span></p>
<pre class="brush: css; title: ; notranslate">

#single_blog img {

 display: inline-block;
 float: left;
 filter: url(&quot;data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale&quot;); /* Firefox 10+ */
 filter: gray; /* IE6-9 */
 -webkit-filter: grayscale(100%); /* Chrome 19+ &amp; Safari 6+ */
 -webkit-transition: all 0.5s ease-in-out;
 transition: all 0.5s ease-in-out;
 -moz-transition: all 0.5s ease-in-out;
 -o-transition: all 0.5s ease-in-out;
 -ms-transition: all 0.5s ease-in-out;

}

</pre>
<p>What have we done here? We used a filter for the #single_blog_image. With the -webkit solution, all of the browsers can use the filtered image, and at the end of the style we have used some transition to have the desaturated effect fade out and the original color fade in. This works in all of the major browsers except in Firefox, because it is not a standard method to have the filters fade.</p>
<pre class="brush: css; title: ; notranslate">
#single_blog img:hover {
 filter: url(&quot;data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale&quot;);
 -webkit-filter: grayscale(0%);
 filter: alpha(opacity=50);
}

</pre>
<p>To be honest, I couldn&#8217;t find any standard solution to fade the filters, so Chrom, Safari and Opera just simply use it, but not Firefox.</p>
<p>Maybe it is not the best solution, but in this case I dont&#8217;t need to use some extra script, so at the moment this is the best solution for Us, and it is possible with pure CSS.</p>
]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/make-picture-desaturate-with-pure-css/feed/</wfw:commentRss>
		<slash:comments>250</slash:comments>
		</item>
		<item>
		<title>Balbu</title>
		<link>http://bws.balbu.eu/balbu/</link>
		<comments>http://bws.balbu.eu/balbu/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 07:04:39 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shop]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=185</guid>
		<description><![CDATA[Balbu is an international online bookstore, wich operates in most of the european countries. The company sells mainly hungarian books for the European and American countries. The main goal was to create th best possible user experience with the easiest interface in mind. We wanted to create a store where the user doesn’t have too [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-186" alt="balbu0" src="http://bws.balbu.eu/wp-content/uploads/2013/04/balbu0.jpg" width="800" height="350" /></p>
<p>Balbu is an international online bookstore, wich operates in most of the european countries. The company sells mainly hungarian books for the European and American countries.</p>
<p>The main goal was to create th best possible user experience with the easiest interface in mind. We wanted to create a store where the user doesn’t have too many unuseful informations, but enough to choose what books are in his/her main interests.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-5-185">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu/balbu002.jpg" title=" " class="myfancybox" rel="set_5" >
								<img title="balbu002" alt="balbu002" src="http://bws.balbu.eu/wp-content/gallery/balbu/thumbs/thumbs_balbu002.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu/balbu01.jpg" title=" " class="myfancybox" rel="set_5" >
								<img title="balbu01" alt="balbu01" src="http://bws.balbu.eu/wp-content/gallery/balbu/thumbs/thumbs_balbu01.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu/balbu03.jpg" title=" " class="myfancybox" rel="set_5" >
								<img title="balbu03" alt="balbu03" src="http://bws.balbu.eu/wp-content/gallery/balbu/thumbs/thumbs_balbu03.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>The cart and the checkout process is also easy to use, so not just the “internet generation” knows how to use it, what and where to type. The site also have a news section, where the editors can write about the latest articles about the world of books and happenings. Besides the easy to use interface we wanted to have the fastest site possible, so the users with bad connections can use the site too.</p>
<h3>The site is available at: <a href="http://balbu.hu/" target="_blank">balbu.hu</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/balbu/feed/</wfw:commentRss>
		<slash:comments>253</slash:comments>
		</item>
		<item>
		<title>Special Providence</title>
		<link>http://bws.balbu.eu/special-providence/</link>
		<comments>http://bws.balbu.eu/special-providence/#comments</comments>
		<pubDate>Fri, 05 Apr 2013 11:45:34 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=31</guid>
		<description><![CDATA[Special Providence is a hungarian music band who plays progress-jazz-rock. Thez gave us an almost full concept for the site, so our job was the sitebuild and program the functions. We have used Symfony framework to build it, with some jQuery for the dynamical contant at the homepage. Also, we have built a complete Merchandise [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-153" alt="specialprovidence0" src="http://bws.balbu.eu/wp-content/uploads/2013/04/specialprovidence0.jpg" width="800" height="350" /></p>
<p>Special Providence is a hungarian music band who plays progress-jazz-rock. Thez gave us an almost full concept for the site, so our job was the sitebuild and program the functions.</p>
<p style="text-align: center;"><a href="http://bws.balbu.eu/wp-content/uploads/2013/04/specialprovidence2.jpg">
<div class="ngg-galleryoverview" id="ngg-gallery-2-31">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-4" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/specialprovidence/specialprovidence1.jpg" title=" " class="myfancybox" rel="set_2" >
								<img title="specialprovidence1" alt="specialprovidence1" src="http://bws.balbu.eu/wp-content/gallery/specialprovidence/thumbs/thumbs_specialprovidence1.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-5" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/specialprovidence/specialprovidence2.jpg" title=" " class="myfancybox" rel="set_2" >
								<img title="specialprovidence2" alt="specialprovidence2" src="http://bws.balbu.eu/wp-content/gallery/specialprovidence/thumbs/thumbs_specialprovidence2.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</a></p>
<p>We have used Symfony framework to build it, with some jQuery for the dynamical contant at the homepage. Also, we have built a complete Merchandise menu, where the user can order one of their album sor t-shirts. The system is sending message for the band and the user.</p>
<h3>The site is available at: <a href="http://specialprovidence.hu/" target="_blank">specialprovidence.hu</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/special-providence/feed/</wfw:commentRss>
		<slash:comments>237</slash:comments>
		</item>
	</channel>
</rss>
