<?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>Elby und Ninja</title>
	<atom:link href="http://www.elbyundninja.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elbyundninja.de</link>
	<description></description>
	<lastBuildDate>Tue, 05 Jan 2010 13:38:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Facebook or Vista CSS 3 Border style</title>
		<link>http://www.elbyundninja.de/facebook-or-vista-css-3-border-style/</link>
		<comments>http://www.elbyundninja.de/facebook-or-vista-css-3-border-style/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 21:03:35 +0000</pubDate>
		<dc:creator>elby</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=341</guid>
		<description><![CDATA[You probably know know Facebook. They decorate their messages and floating div with a nice black border.
Similar to Windows Vista Aero Glass effects this is not a narrow but rather wide border. In this article i want to show you, how this effect is accomplished an take it one step further and make it a [...]]]></description>
			<content:encoded><![CDATA[<p>You probably know know <a title="Facebook" href="http://www.facebook.com">Facebook</a>. They decorate their messages and floating div with a nice black border.</p>
<div id="attachment_342" class="wp-caption aligncenter" style="width: 613px"><img class="size-full wp-image-342 " src="http://www.elbyundninja.de/wp-content/uploads/2009/10/facebook.png" alt="The Facebook border-style" width="603" height="351" /><p class="wp-caption-text">The Facebook border-style</p></div>
<p>Similar to Windows Vista Aero Glass effects this is not a narrow but rather wide border. In this article i want to show you, how this effect is accomplished an take it one step further and make it a Windows Aero Glass effect.</p>
<p>All we need is some CSS 3 and a PNG image for the Aero effect.</p>
<h3>Before we start</h3>
<p>Thus we use two CSS 3 declarations (border-radius and RGBa color) we need a Browser which supports CSS 3. In my case I&#8217;m using Firefox 3.5 and Safari 4.</p>
<h3>The basic facebook-border style</h3>
<p>Set up the HTML:</p>
<pre><code>&lt;div class="fancybox"&gt;
&lt;div class="fancybox-inner"&gt;
&lt;h1&gt;The pure CSS 3 way &lt;/h1&gt;
&lt;p&gt;In aliquet facilisis ante; sit ...&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
</code></pre>
<p>And spice it with some magic CSS:</p>
<pre><code>
.fancybox {
border: 3mm solid rgb(33, 33, 33); /*fallback*/
border: 3mm solid rgba(33, 33, 33, 0.5); /* the translucent border */
max-width:640px;
margin:0 auto;
-moz-border-radius: 3mm;
-webkit-border-radius: 3mm;
border-radius: 3mm;
-moz-box-shadow: 2mm 2mm 6mm #000;
-webkit-box-shadow: 2mm 2mm 6mm #000;
box-shadow: 2mm 2mm 6mm #000;
}
/*-
Check that the border-width and the -webkit-border-radius are the same,
otherwise Safari renders an ugly border!
----------------------------------------------------------------------*/
.fancybox-inner {
background-color:#fff;
padding:4mm;
}
</code></pre>
<p><a class="demo" href="/css3/border/pure-css.html">See a demo</a></p>
<h3>The advanced Aero Glass CSS border-style</h3>
<p>We use the same markup:</p>
<pre><code>&lt;div class="fancybox"&gt;
&lt;div class="fancybox-inner"&gt;
&lt;h1&gt;The Vista / PNG Way&lt;/h1&gt;
&lt;p&gt;In aliquet facilisis ante;  ...&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
</code></pre>
<p>and only alter the css:</p>
<pre><code>
#fancybox {
margin:3em auto;
max-width:800px;
-moz-border-radius: 3mm;
-webkit-border-radius: 3mm;
background:url(bg.png) no-repeat bottom right; /* the background-image
 you want to use for the border */
padding:4mm;
-moz-box-shadow: 2mm 2mm 6mm #000;
-webkit-box-shadow: 2mm 2mm 6mm #000;
box-shadow: 2mm 2mm 6mm #000;
background-color: rgba(00,128,255,0.25); /* color the border */
}

.fancybox-inner {
background-color:#fff;
padding:4mm;
}
</code></pre>
<p>If you use an greyscale image you can alter the color of the border anytime by just changing the background-color. I set the opacity to 0.25 so it is just a nice little touch of a blue (or what color you choose).</p>
<p><a class="demo" href="/css3/border/css+png.html">See a demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/facebook-or-vista-css-3-border-style/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Gelber Tiger in grünem Gras</title>
		<link>http://www.elbyundninja.de/gelber-tiger-in-grunem-grass/</link>
		<comments>http://www.elbyundninja.de/gelber-tiger-in-grunem-grass/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 23:38:47 +0000</pubDate>
		<dc:creator>elby</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=336</guid>
		<description><![CDATA[und der ist ganz schön schnell&#8230;
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=jH8LQPKx7fE&amp;NR=1&amp;feature=fvwp">und der ist ganz schön schnell&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/gelber-tiger-in-grunem-grass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>twitternde Kaffeemaschine</title>
		<link>http://www.elbyundninja.de/twitternde-kaffeemaschine/</link>
		<comments>http://www.elbyundninja.de/twitternde-kaffeemaschine/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 13:09:26 +0000</pubDate>
		<dc:creator>elby</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[kaffee]]></category>
		<category><![CDATA[maschine]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=332</guid>
		<description><![CDATA[Jetzt ist es so weit. Die Maschinen reden mit uns: http://twitter.com/blankomat
]]></description>
			<content:encoded><![CDATA[<p>Jetzt ist es so weit. Die Maschinen reden mit uns: <a title="Die sprechende Kaffeemaschine" href="http://twitter.com/blankomat">http://twitter.com/blankomat</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/twitternde-kaffeemaschine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nachgebesserte Fotos</title>
		<link>http://www.elbyundninja.de/70-photo-manipulations-art-that-will-blow-you-away-inspiration-instantshift/</link>
		<comments>http://www.elbyundninja.de/70-photo-manipulations-art-that-will-blow-you-away-inspiration-instantshift/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 00:31:21 +0000</pubDate>
		<dc:creator>elby</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[bilder]]></category>
		<category><![CDATA[fotos]]></category>
		<category><![CDATA[manipulation]]></category>
		<category><![CDATA[sammlung]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=328</guid>
		<description><![CDATA[
Mehr solcher kleinen Meisterwerke hat instantShift zusammengestellt.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.instantshift.com/2009/10/03/70-photo-manipulations-art-that-will-blow-you-away/"><img src="http://www.elbyundninja.de/wp-content/uploads/2009/10/pmatwbya-17.jpg" alt="" width="392" height="261" /></a></p>
<p>Mehr solcher kleinen Meisterwerke hat<a href="http://www.instantshift.com/2009/10/03/70-photo-manipulations-art-that-will-blow-you-away/"> instantShift</a> zusammengestellt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/70-photo-manipulations-art-that-will-blow-you-away-inspiration-instantshift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RetteDeineFreiheit.de &#8211; Rette deine Freiheit</title>
		<link>http://www.elbyundninja.de/rettedeinefreiheit-de-rette-deine-freiheit/</link>
		<comments>http://www.elbyundninja.de/rettedeinefreiheit-de-rette-deine-freiheit/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 11:14:48 +0000</pubDate>
		<dc:creator>elby</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=326</guid>
		<description><![CDATA[RetteDeineFreiheit.de &#8211; Rette deine Freiheit.
Schade, schade&#8230;.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rettedeinefreiheit.de/">RetteDeineFreiheit.de &#8211; Rette deine Freiheit</a>.</p>
<p>Schade, schade&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/rettedeinefreiheit-de-rette-deine-freiheit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bayrischer Gebirgsschweißhund</title>
		<link>http://www.elbyundninja.de/youtube-bavarian-mountain-scenthound/</link>
		<comments>http://www.elbyundninja.de/youtube-bavarian-mountain-scenthound/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 21:30:21 +0000</pubDate>
		<dc:creator>elby</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=322</guid>
		<description><![CDATA[YouTube &#8211; Bavarian Mountain Scenthound.
Ach die kleinen Hunde sind schon knuddelig&#8230; die mag man einfach! Und wenn sie groß sind, sind sie noch viel besser  

]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=Ioiw169eFJ4&amp;feature=related">YouTube &#8211; Bavarian Mountain Scenthound</a>.</p>
<p>Ach die kleinen Hunde sind schon knuddelig&#8230; die mag man einfach! Und wenn sie groß sind, sind sie noch viel besser <img src='http://www.elbyundninja.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img class="aligncenter size-full wp-image-379" src="http://www.elbyundninja.de/wp-content/uploads/2009/09/PICT4912.JPG" alt="PICT4912" width="640" height="480" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/youtube-bavarian-mountain-scenthound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Has IE6 Finally Reached the End of the Line? &#8211; CSS3 . Info</title>
		<link>http://www.elbyundninja.de/has-ie6-finally-reached-the-end-of-the-line-css3-info/</link>
		<comments>http://www.elbyundninja.de/has-ie6-finally-reached-the-end-of-the-line-css3-info/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 21:16:28 +0000</pubDate>
		<dc:creator>elby</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=318</guid>
		<description><![CDATA[Has IE6 Finally Reached the End of the Line? &#8211; CSS3 . Info.
Das wäre echt mal was. Das wäre so toll, dass ich dafür nicht die passenden Worte finde.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.css3.info/has-ie6-finally-reached-the-end-of-the-line/#">Has IE6 Finally Reached the End of the Line? &#8211; CSS3 . Info</a>.</p>
<p>Das wäre echt mal was. Das wäre so toll, dass ich dafür nicht die passenden Worte finde.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/has-ie6-finally-reached-the-end-of-the-line-css3-info/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mister Furry ;)</title>
		<link>http://www.elbyundninja.de/mister-furry/</link>
		<comments>http://www.elbyundninja.de/mister-furry/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 21:06:43 +0000</pubDate>
		<dc:creator>elby</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=308</guid>
		<description><![CDATA[Nice litte funny shortfilm  
MTV International / Mister Furry from Universal Everything on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p>Nice litte funny shortfilm <img src='http://www.elbyundninja.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://vimeo.com/5395669">MTV International / Mister Furry</a> from <a href="http://vimeo.com/universal">Universal Everything</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/mister-furry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>heise online &#8211; 14.07.09 &#8211; YouTube stellt Unterstützung für Internet Explorer 6 ein</title>
		<link>http://www.elbyundninja.de/heise-online-14-07-09-youtube-stellt-unterstutzung-fur-internet-explorer-6-ein/</link>
		<comments>http://www.elbyundninja.de/heise-online-14-07-09-youtube-stellt-unterstutzung-fur-internet-explorer-6-ein/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 14:51:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=306</guid>
		<description><![CDATA[heise online &#8211; 14.07.09 &#8211; YouTube stellt Unterstützung für Internet Explorer 6 ein.
Das wurde aber auch höchste Zeit!!!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.heise.de/newsticker/YouTube-stellt-Unterstuetzung-fuer-Internet-Explorer-6-ein--/meldung/141998">heise online &#8211; 14.07.09 &#8211; YouTube stellt Unterstützung für Internet Explorer 6 ein</a>.</p>
<p>Das wurde aber auch höchste Zeit!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/heise-online-14-07-09-youtube-stellt-unterstutzung-fur-internet-explorer-6-ein/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sleep timer</title>
		<link>http://www.elbyundninja.de/sleep-timer/</link>
		<comments>http://www.elbyundninja.de/sleep-timer/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 08:35:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.elbyundninja.de/?p=302</guid>
		<description><![CDATA[Ach was. Da betrachtet man dich selbst als technikaffien Menschen und lernt dann doch noch neue Funktionen kennen: den sleep timer am TV-Gerät.
Das schlimme daran ist eigentlich, dass die Funktion wohl auch rege genutzt wird&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Ach was. Da betrachtet man dich selbst als technikaffien Menschen und lernt dann doch noch neue Funktionen kennen: den sleep timer am TV-Gerät.</p>
<p>Das schlimme daran ist eigentlich, dass die Funktion wohl auch rege genutzt wird&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elbyundninja.de/sleep-timer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
