<?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>Template Style</title>
	<atom:link href="http://www.templatestyle.in/feed" rel="self" type="application/rss+xml" />
	<link>http://www.templatestyle.in</link>
	<description>Download WordPress Themes &#38; Icons!</description>
	<lastBuildDate>Wed, 14 Jul 2010 03:13:56 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress のテーマ &#8220;Treasures&#8221; を公開</title>
		<link>http://www.templatestyle.in/item/wordpress-themes-treasures.html</link>
		<comments>http://www.templatestyle.in/item/wordpress-themes-treasures.html#comments</comments>
		<pubDate>Wed, 14 Jul 2010 02:36:56 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=1864</guid>
		<description><![CDATA[人には、それぞれのストーリーがある。宝、貴重な物や人などを意味する &#8220;Treasures&#8221; と名のついた WordPress テーマ。 Treasures 1.0 のダウンロードは &#187; こちら]]></description>
			<content:encoded><![CDATA[<p>人には、それぞれのストーリーがある。宝、貴重な物や人などを意味する &#8220;Treasures&#8221; と名のついた WordPress テーマ。</p>
<p style="height: 220px"><img src="/wp-content/themes/treasures/screenshot.png" width="300" height="220" alt="Treasures" style="border: 1px solid #F1F1F1" /></p>
<ul>
<li>Treasures 1.0 のダウンロードは &raquo; <a href="http://www.templatestyle.in/downloads/#treasures">こちら</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/wordpress-themes-treasures.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress のテーマ &#8220;Happy Cork Board&#8221; 1.2.0 アップデート</title>
		<link>http://www.templatestyle.in/item/wordpress-theme-happycorkboard120.html</link>
		<comments>http://www.templatestyle.in/item/wordpress-theme-happycorkboard120.html#comments</comments>
		<pubDate>Sat, 10 Jul 2010 03:40:26 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=1834</guid>
		<description><![CDATA[Happy Cork Board 1.2.0 を公開しました。 次の仕様改善と不具合を修正しました。 JavaScript ライブラリを jQuery に統一しました。 HTML5 に修正しました。 HTML タグの不具合を修正しました。 投稿、ページおよびインデックスページに前ページ、次ページへのリンクを追加しました。 CSS、Script、RSS を functions.php から読み込むようにしました。 Happy Cork Board 1.2.0 のダウンロードは こちら]]></description>
			<content:encoded><![CDATA[<p>Happy Cork Board 1.2.0 を公開しました。</p>
<p>次の仕様改善と不具合を修正しました。</p>
<ul>
<li>JavaScript ライブラリを jQuery に統一しました。</li>
<li>HTML5 に修正しました。</li>
<li>HTML タグの不具合を修正しました。</li>
<li>投稿、ページおよびインデックスページに前ページ、次ページへのリンクを追加しました。</li>
<li>CSS、Script、RSS を functions.php から読み込むようにしました。</li>
</ul>
<p>Happy Cork Board 1.2.0 のダウンロードは <a href="http://www.templatestyle.in/downloads/#happycorkboard">こちら</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/wordpress-theme-happycorkboard120.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress の jQuery を利用すると $ 関数が見つからない</title>
		<link>http://www.templatestyle.in/item/wordpress-jquery-conflict.html</link>
		<comments>http://www.templatestyle.in/item/wordpress-jquery-conflict.html#comments</comments>
		<pubDate>Wed, 23 Jun 2010 08:28:11 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=1841</guid>
		<description><![CDATA[次のコードを function.php などに記載して、WordPress の jQuery を利用すると、$ 関数(オブジェクト) が見つからないエラー ($ is not a function) が発生します。 wp_enqueue_script('jquery'); これは、prototype.js などのライブラリと $ 関数(オブジェクト)が衝突しないように jquery.js の最後で jQuery.noConflict(); が実行されているためです。 そのため、$() のかわりに、jQuery() を使用する必要があります。jQuery の引数に $ を指定することで、jQuery の引数のオブジェクト内で $ を使用することはできます。 jQuery(function($) { ... });]]></description>
			<content:encoded><![CDATA[<p>次のコードを function.php などに記載して、WordPress の jQuery を利用すると、$ 関数(オブジェクト) が見つからないエラー ($ is not a function) が発生します。</p>
<p><code>wp_enqueue_script('jquery');</code></p>
<p>これは、prototype.js などのライブラリと $ 関数(オブジェクト)が衝突しないように jquery.js の最後で jQuery.noConflict(); が実行されているためです。</p>
<p><span id="more-1841"></span></p>
<p>そのため、$() のかわりに、jQuery() を使用する必要があります。jQuery の引数に $ を指定することで、jQuery の引数のオブジェクト内で $ を使用することはできます。</p>
<p><code>jQuery(function($) {<br />
...<br />
});</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/wordpress-jquery-conflict.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress のテーマ &#8220;Happy Cork Board&#8221; 1.1.1 アップデート</title>
		<link>http://www.templatestyle.in/item/wordpress-themes-happycorkboard111.html</link>
		<comments>http://www.templatestyle.in/item/wordpress-themes-happycorkboard111.html#comments</comments>
		<pubDate>Wed, 16 Jun 2010 03:43:12 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=1828</guid>
		<description><![CDATA[Happy Cork Board 1.1.1 を公開しました。 次の仕様改善と不具合を修正しました。 RSS Feed のリンクを修正しました。 テーマのライセンス情報を追加しました。 左側のタブを複数行に対応しました。 ノーコメントサポートしました。 タグを表示するようにしました。 Happy Cork Board 1.1.1 のダウンロードは こちら]]></description>
			<content:encoded><![CDATA[<p>Happy Cork Board 1.1.1 を公開しました。</p>
<p>次の仕様改善と不具合を修正しました。</p>
<ul>
<li>RSS Feed のリンクを修正しました。</li>
<li>テーマのライセンス情報を追加しました。</li>
<li>左側のタブを複数行に対応しました。</li>
<li>ノーコメントサポートしました。</li>
<li>タグを表示するようにしました。</li>
</ul>
<p>Happy Cork Board 1.1.1 のダウンロードは <a href="http://www.templatestyle.in/downloads/#happycorkboard">こちら</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/wordpress-themes-happycorkboard111.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 iPhone 3G</title>
		<link>http://www.templatestyle.in/item/css3-iphone.html</link>
		<comments>http://www.templatestyle.in/item/css3-iphone.html#comments</comments>
		<pubDate>Fri, 28 May 2010 02:51:46 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=446</guid>
		<description><![CDATA[CSS3 と HTML で iPhone を作ってみました。 #iPhone { margin: 0 auto; padding: 40px 0; width: 302px; text-align: center; } #iPhone div { margin: 0 auto; color: #FFFFFF; text-align: center; font-family: Helvecira, sans-serif; text-shadow: 0 -1px 2px #000000; } #iPhone #powerbutton { margin: 0 0 0 200px; width: 48px; height: 2px; background: -webkit-gradient(linear, left center, right [...]]]></description>
			<content:encoded><![CDATA[<p>CSS3 と HTML で iPhone を作ってみました。</p>
<style type="text/css">
#iPhone {
	margin: 0 auto;
	padding: 40px 0;
	width: 302px;
	text-align: center;
}
#iPhone div {
	margin: 0 auto;
	color: #FFFFFF;
	text-align: center;
	font-family: Helvecira, sans-serif;
	text-shadow: 0 -1px 2px #000000;
}
#iPhone #powerbutton {
	margin: 0 0 0 200px;
	width: 48px;
	height: 2px;
	background: -webkit-gradient(linear, left center, right center, from(#646566), color-stop(0.1, #cacbcc), color-stop(0.9, #cacbcc), to(#646566));
	background: -moz-linear-gradient(left, #646566, #cacbcc 10%, #cacbcc 90%, #646566);
	-webkit-border-top-right-radius: 2px;
	-webkit-border-top-left-radius: 2px;
	-moz-border-radius-topright: 2px;
	-moz-border-radius-topleft: 2px;
}
#iPhone #leftbutton {
	float: left;
	width: 2px;
}
#iPhone #lockbutton {
	margin: 60px 0 18px 0;
	width: 2px;
	height: 25px;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), color-stop(0.2, #cacbcc), color-stop(0.8, #cacbcc), to(#000000));
	background: -moz-linear-gradient(center top, #646566, #cacbcc 20%, #cacbcc 80%, #646566);
	-webkit-border-top-left-radius: 2px;
	-webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-bottomleft: 2px;
}
#iPhone #volumebutton1 {
	margin: 10px 0;
	width: 2px;
	height: 40px;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), color-stop(0.2, #cacbcc), color-stop(0.6, #cacbcc), to(#000000));
	background: -moz-linear-gradient(center top, #646566, #cacbcc 20%, #cacbcc 60%, #646566);
	-webkit-border-top-left-radius: 2px;
	-webkit-border-bottom-left-radius: 2px 30px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-bottomleft: 2px;
}
#iPhone #volumebutton2 {
	margin: 10px 0;
	width: 2px;
	height: 40px;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), color-stop(0.4, #cacbcc), color-stop(0.8, #cacbcc), to(#000000));
	background: -moz-linear-gradient(center top, #646566, #cacbcc 40%, #cacbcc 80%, #646566);
	-webkit-border-top-left-radius: 2px 30px;
	-webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-bottomleft: 2px;
}
#iPhone #flame1 {
	float: right;
	padding: 5px 0;
	width: 300px;
	height: 545px;
	background: -webkit-gradient(linear, left top, left bottom, from(#B1B2B3), color-stop(0.03, #FFFFFF), color-stop(0.98, #FFFFFF), to(#646566));
	background: -moz-linear-gradient(center top, #B1B2B3, #FFFFFF 3%, #FFFFFF 98%, #646566);
	-webkit-box-shadow: 0 5px 10px #999999;
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .5);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
}
#iPhone #flame2 {
	padding: 1px 0;
	width: 300px;
	height: 543px;
	background-color: #000000;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
}
#iPhone #flame3 {
	width: 296px;
	height: 543px;
	background: -webkit-gradient(linear, left center, right center, from(#FFFFFF), color-stop(0.02, #646566), color-stop(0.98, #646566), to(#FFFFFF));
	background: -moz-linear-gradient(left, #FFFFFF, #646566 2%, #646566 98%, #FFFFFF);
	-webkit-border-radius: 52px;
	-moz-border-radius: 52px;
}
#iPhone #flame4 {
	padding: 5px 0;
	width: 286px;
	height: 533px;
	background-color: #FFFFFF;
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
}
#iPhone #display {
	padding: 35px 0;
	width: 270px;
	height: 457px;
	border: 3px solid #000000;
	background: -webkit-gradient(linear, right top, left bottom, from(#4B4C4D), color-stop(0.2, #0F0F0F), to(#0F0F0F));
	background: -moz-linear-gradient(right top, #4B4C4D, #121212 20%, #121212);
	-webkit-border-radius: 38px;
	-moz-border-radius: 38px;
}
#iPhone #ear1 {
	padding: 3px;
	width: 50px;
	height: 6px;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), to(#313233));
	background: -moz-linear-gradient(top, #000000, #313233);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
#iPhone #ear2 {
	width: 50px;
	height: 6px;
	background: -webkit-gradient(linear, center top, center bottom, from(#171819), to(#474849));
	background: -moz-linear-gradient(top, #171819, #474849);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
#iPhone #space1 {
	height: 30px;
}
#iPhone #space2 {
	height: 207px;
}
#iPhone #space3 {
	height: 8px;
}
#iPhone #screen {
	padding: 4px 0;
	width: 256px;
	height: 373px;
	background: url(/clownfish.png) no-repeat 50% 50%, -webkit-gradient(linear, center top, center bottom, from(#313233), color-stop(0.5, #171819), to(#313233));
	background: url(/clownfish.png) no-repeat 50% 50%, -moz-linear-gradient(center top, #313233, #171819 50%, #313233);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
#iPhone #topbar {
	width: 248px;
	height: 11px;
	background: #000000 url(/icon.png) no-repeat 50% 50%;
	opacity: 0.5;
}
#iPhone .glassmenu {
	width: 248px;
	height: 75px;
	background: -webkit-gradient(linear, center top, center bottom, from(#666666), color-stop(0.25, #1A1A1A), color-stop(0.5, #1A1A1A), color-stop(0.5, #000000), to(#000000));
	background: -moz-linear-gradient(center top, #666666, #1A1A1A 25%, #1A1A1A 50%, #000000 50%, #000000);
	opacity: 0.5;
}
#iPhone .line1 {
	width: 248px;
	height: 1px;
	background-color: #333333;
	opacity: 0.5;
}
#iPhone .line2 {
	width: 248px;
	height: 1px;
	background-color: #000000;
	opacity: 0.6;
}
#iPhone .line3 {
	width: 248px;
	height: 1px;
	background-color: #999999;
	opacity: 0.5;
}
#iPhone #clock {
	position: absolute;
	margin: -70px 0 0 0;
	width: 256px;
	font-size: 42px;
}
#iPhone #day {
	position: absolute;
	margin: -25px 0 0 0;
	width: 256px;
	font-size: 10px;
}
#iPhone #unlock {
	position: absolute;
	margin: -48px 26px 0 26px;
	width: 256px;
	font-size: 20px;
}
#iPhone #unlockslider {
	position: absolute;
	margin: -58px 17px 0 17px;
	width: 220px;
	height: 40px;
	border: 1px solid #4D4D4D;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), to(#333333));
	background: -moz-linear-gradient(center top, #000000, #333333);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	opacity: 0.8;
}
#iPhone #unlockbutton {
	position: absolute;
	margin: -55px 20px 0 20px;
	width: 50px;
	height: 36px;
	background: url(/arrow.png) no-repeat 50% 50%, -webkit-gradient(linear, center top, center bottom, from(#F7F7F7), color-stop(0.25, #D9D9D9), color-stop(0.5, #D9D9D9), color-stop(0.5, #C3C3C3), to(#959595));
	background: url(/arrow.png) no-repeat 50% 50%, -moz-linear-gradient(center top, #F7F7F7, #D9D9D9 25%, #D9D9D9 50%, #C3C3C3 50%, #959595);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
#iPhone #homebutton {
	padding: 18px;
	width: 16px;
	height: 16px;
	background: -webkit-gradient(linear, right top, left bottom, from(#000000), color-stop(0.25, #000000), to(#333333));
	background: -moz-linear-gradient(center top, #000000, #000000 25%, #333333);
	-webkit-border-radius: 26px;
	-moz-border-radius: 26px;
}
#iPhone #square {
	width: 15px;
	height: 15px;
	border: 1px solid #646566;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
#iPhone #title {
	clear: both;
	margin: 0;
	font-size: 40px;
	line-height: 80px;
}
</style>
<div id="iPhone">
<div id="powerbutton"></div>
<div id="leftbutton">
<div id="lockbutton"></div>
<div id="volumebutton1"></div>
<div id="volumebutton2"></div>
</p></div>
<div id="flame1">
<div id="flame2">
<div id="flame3">
<div id="flame4">
<div id="display">
<div id="ear1">
<div id="ear2"></div>
</p></div>
<div id="space1"></div>
<div id="screen">
<div id="topbar"></div>
<div class="line2"></div>
<div class="glassmenu"></div>
<div class="line1"></div>
<div class="line2"></div>
<div id="clock">9:42</div>
<div id="day">Thursday, June 9</div>
<div id="space2"></div>
<div class="line2"></div>
<div class="line3"></div>
<div class="glassmenu"></div>
<div id="unlockslider"></div>
<div id="unlockbutton"></div>
<div id="unlock">slide to unlock</div>
</p></div>
<div id="space3"></div>
<div id="homebutton">
<div id="square"></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
<p id="title">CSS3 iPhone</p>
</div>
<p><span id="more-446"></span></p>
<h4>CSS3 iPhone Download</h4>
<ul>
<li>CSS3 iPhone &raquo; <a href="http://www.templatestyle.in/download/cc3iphone.zip">Download</a></li>
</ul>
<h4>IMAGE</h4>
<pre style="text-align: center; background-color: #999999">
<img src="/icon.png" alt="arrow">
<img src="/clownfish.png" alt="arrow">
<img src="/arrow.png" alt="arrow">
</pre>
<h4>HTML</h4>
<pre>
&lt;div id=&quot;iPhone&quot;&gt;
	&lt;div id=&quot;powerbutton&quot;&gt;&lt;/div&gt;
	&lt;div id=&quot;leftbutton&quot;&gt;
		&lt;div id=&quot;lockbutton&quot;&gt;&lt;/div&gt;
		&lt;div id=&quot;volumebutton1&quot;&gt;&lt;/div&gt;
		&lt;div id=&quot;volumebutton2&quot;&gt;&lt;/div&gt;
	&lt;/div&gt;
	&lt;div id=&quot;flame1&quot;&gt;
		&lt;div id=&quot;flame2&quot;&gt;
			&lt;div id=&quot;flame3&quot;&gt;
				&lt;div id=&quot;flame4&quot;&gt;
					&lt;div id=&quot;display&quot;&gt;
						&lt;div id=&quot;ear1&quot;&gt;
							&lt;div id=&quot;ear2&quot;&gt;&lt;/div&gt;
						&lt;/div&gt;
						&lt;div id=&quot;space1&quot;&gt;&lt;/div&gt;
						&lt;div id=&quot;screen&quot;&gt;
							&lt;div id=&quot;topbar&quot;&gt;&lt;/div&gt;
							&lt;div class=&quot;line2&quot;&gt;&lt;/div&gt;
							&lt;div class=&quot;glassmenu&quot;&gt;&lt;/div&gt;
							&lt;div class=&quot;line1&quot;&gt;&lt;/div&gt;
							&lt;div class=&quot;line2&quot;&gt;&lt;/div&gt;
							&lt;div id=&quot;clock&quot;&gt;9:42&lt;/div&gt;
							&lt;div id=&quot;day&quot;&gt;Thursday, June 9&lt;/div&gt;
							&lt;div id=&quot;space2&quot;&gt;&lt;/div&gt;
							&lt;div class=&quot;line2&quot;&gt;&lt;/div&gt;
							&lt;div class=&quot;line3&quot;&gt;&lt;/div&gt;
							&lt;div class=&quot;glassmenu&quot;&gt;&lt;/div&gt;
							&lt;div id=&quot;unlockslider&quot;&gt;&lt;/div&gt;
							&lt;div id=&quot;unlockbutton&quot;&gt;&lt;/div&gt;
							&lt;div id=&quot;unlock&quot;&gt;slide to unlock&lt;/div&gt;
						&lt;/div&gt;
						&lt;div id=&quot;space3&quot;&gt;&lt;/div&gt;
						&lt;div id=&quot;homebutton&quot;&gt;
							&lt;div id=&quot;square&quot;&gt;&lt;/div&gt;
						&lt;/div&gt;
					&lt;/div&gt;
				&lt;/div&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;p id=&quot;title&quot;&gt;CSS3 iPhone&lt;/p&gt;
&lt;/div&gt;
</pre>
<h4>CSS</h4>
<pre>
#iPhone {
	margin: 0 auto;
	padding: 40px 0;
	width: 302px;
	text-align: center;
}
#iPhone div {
	margin: 0 auto;
	color: #FFFFFF;
	text-align: center;
	font-family: Helvecira, sans-serif;
	text-shadow: 0 -1px 2px #000000;
}
#iPhone #powerbutton {
	margin: 0 0 0 200px;
	width: 48px;
	height: 2px;
	background: -webkit-gradient(linear, left center, right center, from(#646566), color-stop(0.1, #cacbcc), color-stop(0.9, #cacbcc), to(#646566));
	background: -moz-linear-gradient(left, #646566, #cacbcc 10%, #cacbcc 90%, #646566);
	-webkit-border-top-right-radius: 2px;
	-webkit-border-top-left-radius: 2px;
	-moz-border-radius-topright: 2px;
	-moz-border-radius-topleft: 2px;
}
#iPhone #leftbutton {
	float: left;
	width: 2px;
}
#iPhone #lockbutton {
	margin: 60px 0 18px 0;
	width: 2px;
	height: 25px;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), color-stop(0.2, #cacbcc), color-stop(0.8, #cacbcc), to(#000000));
	background: -moz-linear-gradient(center top, #646566, #cacbcc 20%, #cacbcc 80%, #646566);
	-webkit-border-top-left-radius: 2px;
	-webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-bottomleft: 2px;
}
#iPhone #volumebutton1 {
	margin: 10px 0;
	width: 2px;
	height: 40px;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), color-stop(0.2, #cacbcc), color-stop(0.6, #cacbcc), to(#000000));
	background: -moz-linear-gradient(center top, #646566, #cacbcc 20%, #cacbcc 60%, #646566);
	-webkit-border-top-left-radius: 2px;
	-webkit-border-bottom-left-radius: 2px 30px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-bottomleft: 2px;
}
#iPhone #volumebutton2 {
	margin: 10px 0;
	width: 2px;
	height: 40px;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), color-stop(0.4, #cacbcc), color-stop(0.8, #cacbcc), to(#000000));
	background: -moz-linear-gradient(center top, #646566, #cacbcc 40%, #cacbcc 80%, #646566);
	-webkit-border-top-left-radius: 2px 30px;
	-webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-bottomleft: 2px;
}
#iPhone #flame1 {
	float: right;
	padding: 5px 0;
	width: 300px;
	height: 545px;
	background: -webkit-gradient(linear, left top, left bottom, from(#B1B2B3), color-stop(0.03, #FFFFFF), color-stop(0.98, #FFFFFF), to(#646566));
	background: -moz-linear-gradient(center top, #B1B2B3, #FFFFFF 3%, #FFFFFF 98%, #646566);
	-webkit-box-shadow: 0 5px 10px #999999;
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .5);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
}
#iPhone #flame2 {
	padding: 1px 0;
	width: 300px;
	height: 543px;
	background-color: #000000;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
}
#iPhone #flame3 {
	width: 296px;
	height: 543px;
	background: -webkit-gradient(linear, left center, right center, from(#FFFFFF), color-stop(0.02, #646566), color-stop(0.98, #646566), to(#FFFFFF));
	background: -moz-linear-gradient(left, #FFFFFF, #646566 2%, #646566 98%, #FFFFFF);
	-webkit-border-radius: 52px;
	-moz-border-radius: 52px;
}
#iPhone #flame4 {
	padding: 5px 0;
	width: 286px;
	height: 533px;
	background-color: #FFFFFF;
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
}
#iPhone #display {
	padding: 35px 0;
	width: 270px;
	height: 457px;
	border: 3px solid #000000;
	background: -webkit-gradient(linear, right top, left bottom, from(#4B4C4D), color-stop(0.2, #0F0F0F), to(#0F0F0F));
	background: -moz-linear-gradient(right top, #4B4C4D, #121212 20%, #121212);
	-webkit-border-radius: 38px;
	-moz-border-radius: 38px;
}
#iPhone #ear1 {
	padding: 3px;
	width: 50px;
	height: 6px;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), to(#313233));
	background: -moz-linear-gradient(top, #000000, #313233);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
#iPhone #ear2 {
	width: 50px;
	height: 6px;
	background: -webkit-gradient(linear, center top, center bottom, from(#171819), to(#474849));
	background: -moz-linear-gradient(top, #171819, #474849);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
#iPhone #space1 {
	height: 30px;
}
#iPhone #space2 {
	height: 207px;
}
#iPhone #space3 {
	height: 8px;
}
#iPhone #screen {
	padding: 4px 0;
	width: 256px;
	height: 373px;
	background: url(/clownfish.png) no-repeat 50% 50%, -webkit-gradient(linear, center top, center bottom, from(#313233), color-stop(0.5, #171819), to(#313233));
	background: url(/clownfish.png) no-repeat 50% 50%, -moz-linear-gradient(center top, #313233, #171819 50%, #313233);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
#iPhone #topbar {
	width: 248px;
	height: 11px;
	background: #000000 url(/icon.png) no-repeat 50% 50%;
	opacity: 0.5;
}
#iPhone .glassmenu {
	width: 248px;
	height: 75px;
	background: -webkit-gradient(linear, center top, center bottom, from(#666666), color-stop(0.25, #1A1A1A), color-stop(0.5, #1A1A1A), color-stop(0.5, #000000), to(#000000));
	background: -moz-linear-gradient(center top, #666666, #1A1A1A 25%, #1A1A1A 50%, #000000 50%, #000000);
	opacity: 0.5;
}
#iPhone .line1 {
	width: 248px;
	height: 1px;
	background-color: #333333;
	opacity: 0.5;
}
#iPhone .line2 {
	width: 248px;
	height: 1px;
	background-color: #000000;
	opacity: 0.6;
}
#iPhone .line3 {
	width: 248px;
	height: 1px;
	background-color: #999999;
	opacity: 0.5;
}
#iPhone #clock {
	position: absolute;
	margin: -70px 0 0 0;
	width: 256px;
	font-size: 42px;
}
#iPhone #day {
	position: absolute;
	margin: -25px 0 0 0;
	width: 256px;
	font-size: 10px;
}
#iPhone #unlock {
	position: absolute;
	margin: -48px 26px 0 26px;
	width: 256px;
	font-size: 20px;
}
#iPhone #unlockslider {
	position: absolute;
	margin: -58px 17px 0 17px;
	width: 220px;
	height: 40px;
	border: 1px solid #4D4D4D;
	background: -webkit-gradient(linear, center top, center bottom, from(#000000), to(#333333));
	background: -moz-linear-gradient(center top, #000000, #333333);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	opacity: 0.8;
}
#iPhone #unlockbutton {
	position: absolute;
	margin: -55px 20px 0 20px;
	width: 50px;
	height: 36px;
	background: url(/arrow.png) no-repeat 50% 50%, -webkit-gradient(linear, center top, center bottom, from(#F7F7F7), color-stop(0.25, #D9D9D9), color-stop(0.5, #D9D9D9), color-stop(0.5, #C3C3C3), to(#959595));
	background: url(/arrow.png) no-repeat 50% 50%, -moz-linear-gradient(center top, #F7F7F7, #D9D9D9 25%, #D9D9D9 50%, #C3C3C3 50%, #959595);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
#iPhone #homebutton {
	padding: 18px;
	width: 16px;
	height: 16px;
	background: -webkit-gradient(linear, right top, left bottom, from(#000000), color-stop(0.25, #000000), to(#333333));
	background: -moz-linear-gradient(center top, #000000, #000000 25%, #333333);
	-webkit-border-radius: 26px;
	-moz-border-radius: 26px;
}
#iPhone #square {
	width: 15px;
	height: 15px;
	border: 1px solid #646566;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
#iPhone #title {
	clear: both;
	margin: 0;
	font-size: 40px;
	line-height: 80px;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/css3-iphone.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress のテーマ &#8220;Happy Cork Board&#8221; を公開</title>
		<link>http://www.templatestyle.in/item/wordpress-themes-happycorkboard.html</link>
		<comments>http://www.templatestyle.in/item/wordpress-themes-happycorkboard.html#comments</comments>
		<pubDate>Sat, 15 May 2010 07:40:55 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=413</guid>
		<description><![CDATA[その日の気分に合わせてウィジェットを置き換えたりして楽しめるコルクボードテイストの WordPress テーマ。 Download &#187; こちら]]></description>
			<content:encoded><![CDATA[<p>その日の気分に合わせてウィジェットを置き換えたりして楽しめるコルクボードテイストの WordPress テーマ。</p>
<p style="height: 220px"><img src="/wp-content/themes/happycorkboard/screenshot.png" width="300" height="220" alt="happycorkboard" style="border: 1px solid #F1F1F1" /></p>
<ul>
<li>Download &raquo; <a href="http://www.templatestyle.in/downloads/#happycorkboard">こちら</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/wordpress-themes-happycorkboard.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>transition (CSS 3)</title>
		<link>http://www.templatestyle.in/item/transition.html</link>
		<comments>http://www.templatestyle.in/item/transition.html#comments</comments>
		<pubDate>Fri, 05 Feb 2010 02:17:48 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=377</guid>
		<description><![CDATA[transition プロパティで変化させるプロパティや時間、タイミングを指定します。 transition: [プロパティ] [時間] [タイミング] 例 TRANSITION TEST .Test a { color: #0000FF; transition: color 1s ease-in-out; } .Test a:hover { color: #FF0000; } プロパティ (transition-property) 値を変化させたいプロパティを指定します。背景色を変化させたい場合は &#34;background-color&#34; と指定します。 時間 (transition-duration) 変化をする時間を指定します。1秒間かけて変化させる場合は &#34;1s&#34; と指定します。初期値は 0 です。 タイミング (transition-timing-function) 変化量を制御する方法を指定します。制御する方法には linear, ease, ease-in, ease-out, ease-in-out, cubic-bezier があります。初期値は ease です。 複数プロパティの変化を指定する 複数のプロパティを同時に変化させるには、[プロパティ] [時間] [タイミング] の値をカンマ区切りでつないで指定します。 transition: [...]]]></description>
			<content:encoded><![CDATA[<p>transition プロパティで変化させるプロパティや時間、タイミングを指定します。</p>
<pre>transition: [プロパティ] [時間] [タイミング]</pre>
<h2>例</h2>
<p class="Test"><a href="#top">TRANSITION TEST</a></p>
<pre>.Test a {
	color: #0000FF;
	transition: color 1s ease-in-out;
}
.Test a:hover {
	color: #FF0000;
}</pre>
<p><span id="more-377"></span></p>
<h2>プロパティ (transition-property)</h2>
<p>値を変化させたいプロパティを指定します。背景色を変化させたい場合は &quot;background-color&quot; と指定します。</p>
<h2>時間 (transition-duration)</h2>
<p>変化をする時間を指定します。1秒間かけて変化させる場合は &quot;1s&quot; と指定します。初期値は 0 です。</p>
<h2>タイミング (transition-timing-function)</h2>
<p>変化量を制御する方法を指定します。制御する方法には linear, ease, ease-in, ease-out, ease-in-out, cubic-bezier があります。初期値は ease です。</p>
<h2>複数プロパティの変化を指定する</h2>
<p>複数のプロパティを同時に変化させるには、[プロパティ] [時間] [タイミング] の値をカンマ区切りでつないで指定します。</p>
<pre>transition: [プロパティ] [時間] [タイミング], [プロパティ] [時間] [タイミング]...</pre>
<h2>ブラウザの対応状況</h2>
<p>CSS 3 の機能とはいえ、Opera 10.5 以外のブラウザではそのまま利用できない状況です。しかし、Webkit 系ブラウザ (Safari や Google Chrome など) では -webkit-transition を、Gecko 系ブラウザ (Firefox など) では -moz-transition とベンダープレフィックスをつけることで利用することができます。Trident 系ブラウザ (Internet Explorer など) はもちろん使えません！</p>
<style type="text/css">
.Test a {
	color: #0000FF;
	-webkit-transition: color 1s ease-in-out;
	-moz-transition: color 1s ease-in-out;
	transition: color 1s ease-in-out;
}
.Test a:hover {
	color: #FF0000;
}
</style>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/transition.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>プレゼントアイコン</title>
		<link>http://www.templatestyle.in/item/icon-present.html</link>
		<comments>http://www.templatestyle.in/item/icon-present.html#comments</comments>
		<pubDate>Sun, 10 Jan 2010 02:49:19 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=1852</guid>
		<description><![CDATA[Download &#187; こちら]]></description>
			<content:encoded><![CDATA[<p class="Center" style="height: 520px"><img src="http://www.templatestyle.in/download/icons/present-512x512.png" width="512" height="512" alt="プレゼントアイコン"  /></p>
<ul>
<li>Download  &raquo; <a href="http://www.templatestyle.in/downloads/">こちら</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/icon-present.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>クリスマスツリーアイコン</title>
		<link>http://www.templatestyle.in/item/icon-xmas-tree.html</link>
		<comments>http://www.templatestyle.in/item/icon-xmas-tree.html#comments</comments>
		<pubDate>Wed, 06 Jan 2010 07:16:06 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[Icon]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=359</guid>
		<description><![CDATA[Download &#187; こちら]]></description>
			<content:encoded><![CDATA[<p class="Center" style="height: 520px"><img src="http://www.templatestyle.in/download/icons/tree-512x512.png" width="512" height="512" alt="クリスマスツリーアイコン"  /></p>
<ul>
<li>Download  &raquo; <a href="http://www.templatestyle.in/downloads/">こちら</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/icon-xmas-tree.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP OpenID Library を MySQL Store で使う</title>
		<link>http://www.templatestyle.in/item/php-openid-library-mysql.html</link>
		<comments>http://www.templatestyle.in/item/php-openid-library-mysql.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 01:33:46 +0000</pubDate>
		<dc:creator>Template Style</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.templatestyle.in/?p=348</guid>
		<description><![CDATA[前回テストした PHP OpenID Library に付属したサンプルプログラムは OpenID の処理に必要な情報の保存にファイルを使用していましたが、ファイルではなく MySQL などのデータベースを利用することもできます。 なお、データベースの接続などに PEAR::DB ライブラリが必要です。 PHP OpenID Library に付属したサンプルプログラムを、ファイルから MySQL を利用するように変更してみます。 読み込むライブラリを変更する まず、ファイルを利用するライブラリではなくデータベースを利用するファイルを読み込むように次の行を変更します。 変更前 : require_once "Auth/OpenID/FileStore.php"; 変更後 : require_once "Auth/OpenID/MySQLStore.php"; データベースに接続する getStore 関数で MySQL に接続をして、戻り値を Auth_OpenID_FileStore から Auth_OpenID_MySQLStore に変更します。 変更後の getStore 関数は次の通りです。 function &#038;getStore() { $connect = DB::connect("mysql://(user):(password)@localhost/(dbname)"); return new Auth_OpenID_MySQLStore($connect); } PHP OpenID Library のテスト成功 ブラウザから [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.templatestyle.in/item/php-openid-library.html">前回テストした PHP OpenID Library に付属したサンプルプログラム</a>は OpenID の処理に必要な情報の保存にファイルを使用していましたが、ファイルではなく MySQL などのデータベースを利用することもできます。<br />
なお、データベースの接続などに PEAR::DB ライブラリが必要です。</p>
<p>PHP OpenID Library に付属したサンプルプログラムを、ファイルから MySQL を利用するように変更してみます。<br />
<span id="more-348"></span></p>
<h2>読み込むライブラリを変更する</h2>
<p>まず、ファイルを利用するライブラリではなくデータベースを利用するファイルを読み込むように次の行を変更します。</p>
<p>変更前 : <code>require_once "Auth/OpenID/FileStore.php";</code><br />
変更後 : <code>require_once "Auth/OpenID/MySQLStore.php";</code></p>
<h2>データベースに接続する</h2>
<p>getStore 関数で MySQL に接続をして、戻り値を Auth_OpenID_FileStore から Auth_OpenID_MySQLStore に変更します。<br />
変更後の getStore 関数は次の通りです。</p>
<pre><code>function &#038;getStore() {
  $connect = DB::connect("mysql://(user):(password)@localhost/(dbname)");
  return new Auth_OpenID_MySQLStore($connect);
}
</code></pre>
<h2>PHP OpenID Library のテスト成功</h2>
<p>ブラウザから examples/consumer/index.php にアクセスし、Identity URL を入力した上、[Verify] ボタンをクリックします。<br />
次のメッセージが表示されれば成功です。</p>
<p>You have successfully verified (Identity URL) as your identity.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatestyle.in/item/php-openid-library-mysql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
