<?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>Evert Semeijn</title>
	<atom:link href="http://evertsemeijn.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://evertsemeijn.nl</link>
	<description>Premium and custom themes</description>
	<lastBuildDate>Mon, 30 Jan 2012 16:16:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CSS Gradients</title>
		<link>http://evertsemeijn.nl/css-gradients/</link>
		<comments>http://evertsemeijn.nl/css-gradients/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 09:39:06 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=517</guid>
		<description><![CDATA[On of the most used visual tricks are gradients. With CSS3 you can now do this without needing images. You use it like this: background: linear-gradient([color1], [color2]); Now color1 will fade to color2 from the top of the element to bottom. With the different prefixes this is fairly easy to use (top to bottom gradient [...]]]></description>
			<content:encoded><![CDATA[<p>On of the most used visual tricks are gradients. With CSS3 you can now do this without needing images. You use it like this:</p>
<blockquote>
<pre><code>background: linear-gradient([color1], [color2]);</code></pre>
</blockquote>
<p>Now color1 will fade to color2 from the top of the element to bottom. With the different prefixes this is fairly easy to use (top to bottom gradient going from white to black).</p>
<blockquote><p><code>background: #000; /* solid color for older browsers */<br />
background: -moz-linear-gradient(#FFF, #000);<br />
background: -o-linear-gradient(#FFF, #000);<br />
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#000)); /* older webkit */<br />
background: -webkit-linear-gradient(#FFF, #000);</code></p></blockquote>
<p>You can spice it up by using RGBA colors which adds the option of transparency, but as a webdesigner I want to be working with re-usable code. This saves me and my clients time and makes things easier to adjust. So in principle I&#8217;d want to extract the gradient from the color.</p>
<p>Since the background declaration will overrule the background-color declaration this might seem impossible, but not if you combine the base color of your gradient and the possibilities of the transparency from RGBA.</p>
<blockquote><p><code>background: #55B361; /* solid color for older browsers */<br />
background: #55B361 -moz-linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));<br />
background: #55B361 -o-linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));<br />
background: #55B361 -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.1)), to(rgba(0,0,0,0.1))); /* older webkit */<br />
background: #55B361 -webkit-linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));</code></p></blockquote>
<p>As you see the color is now added to the background declaration before the gradient is defined. The gradient colors are defined in RGBA which gives you control over the transparency of the gradient colors and to what extend they will mix with the background-color. In the above example I am using a gradient going from white (10% visible) to black (10% visible). Re-using the gradients is now very simple; I just have to replace the background-color and I am done.</p>
<p>Although this is a possibility for many situations, it also has its downside. I works best when using a gradient with the same colors, for instance from black to black or white to white, where you only change the alpha. I had the best results with setting the alpha of the first gradient color to 0 and only adjusting the alpha of the second color.</p>
<p>What do think of this solution? Will you be using it?</p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/css-gradients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive site redesign</title>
		<link>http://evertsemeijn.nl/responsive-site-redesign/</link>
		<comments>http://evertsemeijn.nl/responsive-site-redesign/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 11:43:18 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=501</guid>
		<description><![CDATA[As I have a redesign of my website planned I&#8217;m diving into the latest solutions on webdesign. Since browsing on mobile devices will grow in popularity and there are so many screen sizes I want my site to fit on any screen, without making several versions for every possible resolution. Since this approach is recently [...]]]></description>
			<content:encoded><![CDATA[<p>As I have a redesign of my website planned I&#8217;m diving into the latest solutions on webdesign. Since browsing on mobile devices will grow in popularity and there are so many screen sizes I want my site to fit on any screen, without making several versions for every possible resolution. Since this approach is recently growing in usage it has been given a name: Response Web Design.<span id="more-501"></span></p>
<p>In a recent article Ethan Marcotte<sup><a title="Responsive Web Design by Ethan Marcotte" href="http://www.alistapart.com/articles/responsive-web-design/">1</a></sup> points out that &#8220;<em>Fluid grids, flexible images, and media queries are the three technical ingredients for responsive web design, but it also requires a different way of thinking. Rather than quarantining our content into disparate, device-specific experiences, we can use media queries to progressively enhance our work within different viewing contexts</em>.&#8221;</p>
<p>Resources on Responsive Web Design are emerging on the web. Seeing several demos online I understand why this will become the future trend in webdesign, which doesn&#8217;t only requires sites to be rebuild, but also requires a shift in the concept of sites and the way we used to build them. The content on sites will have to be fluid.</p>
<p>Since you might want to see what I am talking about I am share the following links with you. What do you think? Will you rethink your sites to make them responsive too?</p>
<p><a href="http://www.smashingmagazine.com/responsive-web-design-guidelines-tutorials/">http://www.smashingmagazine.com/responsive-web-design-guidelines-tutorials/</a><br />
<a href="http://demos.simplethemes.com/skeleton/">http://demos.simplethemes.com/skeleton/</a><br />
<a href="http://www.smashingmagazine.com/2011/08/24/freebie-responsive-jquery-slider-plugin-flexslider/">http://www.smashingmagazine.com/2011/08/24/freebie-responsive-jquery-slider-plugin-flexslider/</a><br />
<a href="http://fitvidsjs.com/">http://fitvidsjs.com/</a><br />
<a href="http://letteringjs.com/">http://letteringjs.com/</a><br />
<a href="http://fittextjs.com/">http://fittextjs.com/</a></p>
<p>And a little treat: <a href="http://www.smashingmagazine.com/2011/09/08/to-five-smashing-years-and-a-free-anniversary-ebook-treat/">http://www.smashingmagazine.com/2011/09/08/to-five-smashing-years-and-a-free-anniversary-ebook-treat/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/responsive-site-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@Quora</title>
		<link>http://evertsemeijn.nl/quora/</link>
		<comments>http://evertsemeijn.nl/quora/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 10:30:35 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=491</guid>
		<description><![CDATA[[blackbirdpie url="https://twitter.com/evertsemeijn/status/124068174852399104"] link]]></description>
			<content:encoded><![CDATA[<p>[blackbirdpie url="https://twitter.com/evertsemeijn/status/124068174852399104"]</p>
<p><a href="https://twitter.com/evertsemeijn/status/124068174852399104">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/quora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New service: Launch Effect</title>
		<link>http://evertsemeijn.nl/new-service-launch-effect/</link>
		<comments>http://evertsemeijn.nl/new-service-launch-effect/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 19:48:32 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=478</guid>
		<description><![CDATA[Lets be honest: I can&#8217;t create your job board in minutes. It takes time. Time to discuss the overall look of the site, time to discuss the colors we&#8217;ll be using and we need time to test your job board before launching it. But when you think this is bad for the launch of your [...]]]></description>
			<content:encoded><![CDATA[<p>Lets be honest: I can&#8217;t create your job board in minutes. It takes time. Time to discuss the overall look of the site, time to discuss the colors we&#8217;ll be using and we need time to test your job board before launching it. But when you think this is bad for the launch of your <a title="Job Board installation" href="http://evertsemeijn.nl/job-board-installation/">new jobboard</a> you are wrong! Enter our new add-on <em>Launch Effect</em>.</p>
<p><em>Launch Effect</em> is a one-page theme that lets you create a viral campaign. Here&#8217;s how it works:</p>
<ul>
<li>Visitors to your website sign up on your <em>Launch Effect</em> site using their email.</li>
<li>Upon signing up, the page generates a special URL for them to share with their friends.</li>
<li>Use the URL to track your most active referrers and reward them for spreading the word.</li>
</ul>
<p>While I am working on your new job board you are launching your own viral campaign and collecting vital information on potential customers who are spreading the word for you!</p>
<p>Order your <em>Launch Effect</em> <a title="Contact me" href="http://evertsemeijn.nl/contact-me/">now</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/new-service-launch-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prey</title>
		<link>http://evertsemeijn.nl/prey/</link>
		<comments>http://evertsemeijn.nl/prey/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 11:21:37 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=381</guid>
		<description><![CDATA[I bet no one ever stole your laptop, and you are planning never to lose it! Am I right? Nevertheless you&#8217;d better install Prey! Prey watches over your laptop or desktop (Mac, Linux and Windows) and is Open Source, meaning free. During installation your register with Prey (or use your own server) and you are [...]]]></description>
			<content:encoded><![CDATA[<p>I bet no one ever stole your laptop, and you are planning never to lose it! Am I right? Nevertheless you&#8217;d better install <a href="http://preyproject.com/">Prey</a>! Prey watches over your laptop or desktop (Mac, Linux and Windows) and is Open Source, meaning free.</p>
<p>During installation your register with Prey (or use your own server) and you are set. Once you lose your device, or it gets stolen your log in to your Prey web-account, set the device status as lost  and watch the screenshots, IP&#8217;s and pictures of the thief roll in to your mailbox.</p>
<p>One tip: turn auto-login on!</p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/prey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five countries in 2 days</title>
		<link>http://evertsemeijn.nl/five-countries-in-2-days/</link>
		<comments>http://evertsemeijn.nl/five-countries-in-2-days/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 07:11:24 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=376</guid>
		<description><![CDATA[Excited about this weekend: will be touring 5 countries in 2 days with 20 other Fireblades]]></description>
			<content:encoded><![CDATA[<p>Excited about this weekend: will be touring 5 countries in 2 days with 20 other Fireblades</p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/five-countries-in-2-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lessons for life</title>
		<link>http://evertsemeijn.nl/lessons-for-life/</link>
		<comments>http://evertsemeijn.nl/lessons-for-life/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 12:37:13 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=332</guid>
		<description><![CDATA[If you are not living on the edge you should get closer to it.]]></description>
			<content:encoded><![CDATA[<p>If you are not living on the edge you should get closer to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/lessons-for-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress solution to Jobberbase</title>
		<link>http://evertsemeijn.nl/wordpress-solution-to-jobberbase/</link>
		<comments>http://evertsemeijn.nl/wordpress-solution-to-jobberbase/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 22:13:35 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=329</guid>
		<description><![CDATA[Working on a WordPress solution for Jobberbase for all those JB&#8217;ers out there that feel like switching. Will release some details soon.]]></description>
			<content:encoded><![CDATA[<p>Working on a WordPress solution for Jobberbase for all those JB&#8217;ers out there that feel like switching. Will release some details soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/wordpress-solution-to-jobberbase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anna theme coming up</title>
		<link>http://evertsemeijn.nl/anna-theme-coming-up/</link>
		<comments>http://evertsemeijn.nl/anna-theme-coming-up/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 18:21:32 +0000</pubDate>
		<dc:creator>Evert Semeijn</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://evertsemeijn.nl/?p=314</guid>
		<description><![CDATA[Anna will soon be released through the WebJobs App Market.]]></description>
			<content:encoded><![CDATA[<p>Anna will soon be released through the WebJobs App Market.</p>
]]></content:encoded>
			<wfw:commentRss>http://evertsemeijn.nl/anna-theme-coming-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

