<?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>Cameron Baney Design Blog &#187; tutorial</title>
	<atom:link href="http://blog.cameronbaney.com/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cameronbaney.com</link>
	<description>Web design information, tutorials, articles and inspiration</description>
	<lastBuildDate>Wed, 14 Jul 2010 22:58:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Create a CSS3 Search Form</title>
		<link>http://blog.cameronbaney.com/tutorials/create-a-css3-search-form/</link>
		<comments>http://blog.cameronbaney.com/tutorials/create-a-css3-search-form/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 22:47:39 +0000</pubDate>
		<dc:creator>Cameron Baney</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[search form]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.cameronbaney.com/?p=295</guid>
		<description><![CDATA[A site&#8217;s search form is a vital tool for visitors to quickly find exactly what they want. Since it is such a useful tool, it should not only stand out on your site in location, but also by appearance. Thanks to CSS3, creating a slick search form is easier than ever. Download SourceDemo The Markup [...]]]></description>
			<content:encoded><![CDATA[<p>A site&#8217;s search form is a vital tool for visitors to quickly find exactly what they want. Since it is such a useful tool, it should not only stand out on your site in location, but also by appearance. Thanks to CSS3, creating a slick search form is easier than ever.</p>
<p><span id="more-295"></span><br />
<span class="tutbtn r"><a class="tutsource" href="/tutorials/css3-search-form/css3-search-form.zip">Download Source</a></span><span class="tutbtn"><a class="tutdemo" href="/tutorials/css3-search-form/">Demo</a></span></p>
<h2>The Markup</h2>
<p>The markup is simple. All that is needed is a form, a text box and a submit button.</p>
<pre name="code" class="html">
<form id="search-form">
<input type="text" />
<input type="submit" value="Search" />
</form>
</pre>
<h2>CSS3 Magic</h2>
<p>The rest is done with CSS. This includes everything from gradients to rounded corners. CSS3 takes out a lot of the need for images, allowing elements to be more scalable as well as being easier to create. There are regular background colors included in the CSS for browsers that don&#8217;t support CSS3. They may not look as spiffy as the CSS3 version, but it will appear somewhat close.</p>
<pre name="code" class="css">
#search-form {
	background: #e1e1e1; /* Fallback color for non-css3 browsers */
	width: 365px;

	/* Gradients */
	background: -webkit-gradient( linear,left top, left bottom, color-stop(0, rgb(243,243,243)), color-stop(1, rgb(225,225,225)));
	background: -moz-linear-gradient( center top, rgb(243,243,243) 0%, rgb(225,225,225) 100%);

	/* Rounded Corners */
	border-radius: 17px;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;

	/* Shadows */
	box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
	-moz-box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
}

/*** TEXT BOX ***/
input[type="text"]{
	background: #fafafa; /* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(250,250,250)), color-stop(1, rgb(230,230,230)));
	background: -moz-linear-gradient( center top, rgb(250,250,250) 0%, rgb(230,230,230) 100%);

	border: 0;
	border-bottom: 1px solid #fff;
	border-right: 1px solid rgba(255,255,255,.8);
	font-size: 16px;
	margin: 4px;
	padding: 5px;
	width: 250px;

	/* Rounded Corners */
	border-radius: 17px;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;

	/* Shadows */
	box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
	-webkit-box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
	-moz-box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
}

/*** USER IS FOCUSED ON TEXT BOX ***/
input[type="text"]:focus{
	outline: none;
	background: #fff; /* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(255,255,255)), color-stop(1, rgb(235,235,235)));
	background: -moz-linear-gradient( center top, rgb(255,255,255) 0%, rgb(235,235,235) 100%);
}

/*** SEARCH BUTTON ***/
input[type="submit"]{
	background: #44921f;/* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(79,188,32)), color-stop(0.15, rgb(73,157,34)), color-stop(0.88, rgb(62,135,28)), color-stop(1, rgb(49,114,21)));
	background: -moz-linear-gradient( center top, rgb(79,188,32) 0%, rgb(73,157,34) 15%, rgb(62,135,28) 88%, rgb(49,114,21) 100%);

	border: 0;
	color: #eee;
	cursor: pointer;
	float: right;
	font: 16px Arial, Helvetica, sans-serif;
	font-weight: bold;
	height: 30px;
	margin: 4px 4px 0;
	text-shadow: 0 -1px 0 rgba(0,0,0,.3);
	width: 84px;
	outline: none;

	/* Rounded Corners */
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;

	/* Shadows */
	box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.4);
	-moz-box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.2);
	-webkit-box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.4);
}
/*** SEARCH BUTTON HOVER ***/
input[type="submit"]:hover {
	background: #4ea923; /* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(89,222,27)), color-stop(0.15, rgb(83,179,38)), color-stop(0.8, rgb(66,143,27)), color-stop(1, rgb(54,120,22)));
	background: -moz-linear-gradient( center top, rgb(89,222,27) 0%, rgb(83,179,38) 15%, rgb(66,143,27) 80%, rgb(54,120,22) 100%);
}
input[type="submit"]:active {
	background: #4ea923; /* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(89,222,27)), color-stop(0.15, rgb(83,179,38)), color-stop(0.8, rgb(66,143,27)), color-stop(1, rgb(54,120,22)));
	background: -moz-linear-gradient( center bottom, rgb(89,222,27) 0%, rgb(83,179,38) 15%, rgb(66,143,27) 80%, rgb(54,120,22) 100%);
}
</pre>
<h2>Compatibility</h2>
<p>CSS3 works in most new browsers, with the exception of Internet Explorer (any version). This has been tested cross-browser and cross-platform. If you have any issues, please comment below and I will try to patch them.</p>
<p>In addition, this tutorial is just to style the search form. You can slap these styles on a search form such as the WordPress search form for functionality.</p>
<p><span class="tutbtn r"><a class="tutsource" href="/tutorials/css3-search-form/css3-search-form.zip">Download Source</a></span><span class="tutbtn"><a class="tutdemo" href="/tutorials/css3-search-form/">Demo</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cameronbaney.com/tutorials/create-a-css3-search-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neat Tweets #1</title>
		<link>http://blog.cameronbaney.com/neat-tweets/neat-tweets-1/</link>
		<comments>http://blog.cameronbaney.com/neat-tweets/neat-tweets-1/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 20:10:51 +0000</pubDate>
		<dc:creator>Cameron Baney</dc:creator>
				<category><![CDATA[Neat Tweets]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[showcase]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.cameronbaney.com/?p=22</guid>
		<description><![CDATA[Neat Tweets is a weekly feature that showcases the best tweets of the week. These tweets can be an assortment of inspiration, tutorials, resources or freebies. I take the liberty to filter through all of the tweets of the week for the best of the best just so you don&#8217;t have to. Web UI Treasure [...]]]></description>
			<content:encoded><![CDATA[<p>Neat Tweets is a weekly feature that showcases the best tweets of the week. These tweets can be an assortment of inspiration, tutorials, resources or freebies. I take the liberty to filter through all of the tweets of the week for the best of the best just so you don&#8217;t have to.<br />
<span id="more-22"></span></p>
<h3><a href="http://artdesigner.lv/archives/269">Web UI Treasure Chest v1.0</a></h3>
<p><a href="http://artdesigner.lv/archives/269"><img class="postimage alignnone size-full wp-image-29" title="Web UI Treasure Chest" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/web-ui.jpg" alt="Web UI Treasure Chest" width="598" height="154" /></a></p>
<p>Version 1.0 of the Web UI Treasure Chest includes over 100 elements in a full, layered .PSD file. Most of the elements are editable, which makes it a perfect resource for your next web project.</p>
<hr />
<h3><a href="http://freelancefolder.com/5-steps-to-winning-any-client-project/">5 Steps to winning any client project</a></h3>
<p><a href="http://freelancefolder.com/5-steps-to-winning-any-client-project/"><img class="postimage alignnone size-full wp-image-27" title="five-steps-winning" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/five-steps-winning.jpg" alt="five-steps-winning" width="598" height="154" /></a></p>
<p>FreelanceFolder published this excellent article for freelance designers. Being a freelance designer not only requires design skills, but also salesman skills. This articles gives you five steps to win clients, including why the step is needed and how to achieve it.</p>
<hr />
<h3><a href="http://www.narga.net/photoshop-cs-keyboard-shortcut/">Keyboard shortcut for Photoshop CS3 and CS4 Toolbox</a></h3>
<p><a href="http://www.narga.net/photoshop-cs-keyboard-shortcut/"><img class="postimage" title="adobe-shortcuts" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/adobe-shortcuts.jpg" alt="adobe-shortcuts" width="598" height="154" /></a></p>
<p>Whether you are new to Photoshop or a veteran user, these PDF sheets are a nice reference to all keyboard shortcuts. Using shortcuts in any application can greatly increase your productivity. Save or print these sheets as a quick reference.</p>
<hr />
<h3><a href="http://www.wprecipes.com/compress-wordpress-output-and-speed-your-blogs-load-speed">Compress WordPress output and speed your blog’s load speed</a></h3>
<p><a href="http://www.wprecipes.com/compress-wordpress-output-and-speed-your-blogs-load-speed"><img class="postimage alignnone size-full wp-image-25" title="compress-wordpress" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/compress-wordpress.jpg" alt="compress-wordpress" width="598" height="154" /></a></p>
<p>WPRecipes offers a quick and simple solution to compress your WordPress site to speed up loading times. This technique enables zlib compression for all of your files stored on your site.</p>
<hr />
<h3><a href="http://www.blog.spoongraphics.co.uk/articles/wordpress-website-design-process">WordPress Website Design Process for IT-IS Ltd</a></h3>
<p><a href="http://www.blog.spoongraphics.co.uk/articles/wordpress-website-design-process"><img class="postimage alignnone size-full wp-image-28" title="it-is-tutorial" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/it-is-tutorial.jpg" alt="it-is-tutorial" width="598" height="154" /></a></p>
<p><a href="http://www.twitter.com/chrisspooner">Chris Spooner</a> wrote this excellent article showcasing his design process for his most recent project. It includes background information, his thought process and even a nice time lapse video of the website creation, from the graphics to the coding.</p>
<hr />
<h3><a href="http://www.pvmgarage.com/en/2009/10/plugins-and-tutorials-to-enhance-the-images-of-your-website-with-jquery/">Plugins And Tutorials To Enhance The Images Of Your Website With jQuery</a></h3>
<p><a href="http://www.pvmgarage.com/en/2009/10/plugins-and-tutorials-to-enhance-the-images-of-your-website-with-jquery/"><img class="postimage alignnone size-full wp-image-26" title="enhance-design-jquery" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/enhance-design-jquery.jpg" alt="enhance-design-jquery" width="598" height="154" /></a></p>
<p>An excellent resource on how to enhance the images on your website with <a href="http://www.jquery.com">jQuery</a>. The plugins give you an easy to use feature that will take your site to the next level.</p>
<hr />
<h3><a href="http://www.fuelyourcreativity.com/the-best-adobe-air-apps-to-increase-productivity/">The Best Adobe Air Apps to Increase Productivity</a></h3>
<p><a href="http://www.fuelyourcreativity.com/the-best-adobe-air-apps-to-increase-productivity/"><img class="postimage alignnone size-full wp-image-24" title="air-productivity" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/air-productivity.jpg" alt="air-productivity" width="598" height="154" /></a></p>
<p>Angie Bowen from Fuel Your Creativity wrote a nice article on Adobe AIR programs that can increase your productivity. The best part about it is they are all cross platform programs thanks to Adobe AIR.</p>
<hr />
<h3><a href="http://www.cssreflex.com/2009/10/25-hand-picked-best-jquery-based-wordpress-plugins.html">25 Hand Picked Best jQuery based WordPress Plugins</a></h3>
<p><a href="http://www.cssreflex.com/2009/10/25-hand-picked-best-jquery-based-wordpress-plugins.html"><img class="postimage alignnone size-full wp-image-30" title="hand-picked-jquery" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/hand-picked-jquery.jpg" alt="hand-picked-jquery" width="598" height="154" /></a></p>
<p>These jQuery plugins are all specifically for WordPress, so using them on your blog or website is as simple as can be.</p>
<hr />
<h3><a href="http://www.listelog.com/111-css-gallery-to-submit-your-design/">111 CSS Gallery To Submit Your Design</a></h3>
<p><a href="http://www.listelog.com/111-css-gallery-to-submit-your-design/"><img class="postimage alignnone size-full wp-image-32" title="111-submit-design" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/111-submit-design.jpg" alt="111-submit-design" width="598" height="154" /></a></p>
<p>Ever wanted to submit your site to those design showcases, but didn&#8217;t know how many there are? Listelog took care of that for you, and compiled a list of the 111 CSS galleries to submit your design to.</p>
<hr />
<h3><a href="http://creativeoverflow.net/10-ways-a-designer-can-make-some-extra-money/">10 Ways a designer can make some extra money</a></h3>
<p><a href="http://creativeoverflow.net/10-ways-a-designer-can-make-some-extra-money/"><img class="postimage alignnone size-full wp-image-31" title="ways-designers-make-money" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/ways-designers-make-money.jpg" alt="ways-designers-make-money" width="598" height="154" /></a></p>
<p>Sometimes a designer will go through a period with no projects. Don&#8217;t worry, here are 10 more ways that you can make money.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cameronbaney.com/neat-tweets/neat-tweets-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
