<?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>Rockstar template &#187; Css</title>
	<atom:link href="http://rockstartemplate.com/category/tutorial/css-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://rockstartemplate.com</link>
	<description>Library Of Templates</description>
	<lastBuildDate>Sat, 24 Dec 2011 13:25:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>CSS3 Stylish Search Box with Folded Corner Effect</title>
		<link>http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/</link>
		<comments>http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 08:23:22 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=1115</guid>
		<description><![CDATA[This tutorial shows you how to create a Folded corner effect without images. Just like the one mentioned below.., The below sample is a simple search box without a folded corner. Our tutorial shows you how to make this search box with folded effect. Step 1] Create a simple Search Box with Gradient and shadow [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial shows you how to create a Folded corner effect without images. Just like the one mentioned below..,</p>
<p>The below sample is a simple search box without a folded corner. Our tutorial shows you how to make this search box with folded effect.</p>
<div style="text-align: center;"><a href="http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/attachment/searchbox_design/" rel="attachment wp-att-1267"><img class="aligncenter size-full wp-image-1267" title="searchbox_design" src="http://rockstartemplate.com/wp-content/uploads/2011/11/searchbox_design.jpg" alt="searchbox design CSS3 Stylish Search Box with Folded Corner Effect" width="404" height="86" /></a></div>
<p>Step 1] Create a simple Search Box with Gradient and shadow effect.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
</pre>
<pre>.searchbox {
position:relative;
width:400px;
margin:0px auto;
color:#f2f2f2;
background:#97C02F;
overflow:hidden;
border: solid 0px #d2d2d2;
padding:1em 1.5em;
-webkit-box-shadow: 0 1px 0px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 0px rgba(0,0,0,.1);
box-shadow: 0 1px 0px rgba(0,0,0,.1);
background: -webkit-gradient(linear, left top, left bottom, from(#C7FD3F), to(#638903));
background: -moz-linear-gradient(top,  #C7FD3F,  #638903);
filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&#039;#C7FD3F&#039;, endColorstr=&#039;#638903&#039;);
-ms-filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&#039;#C7FD3F&#039;, endColorstr=&#039;#638903&#039;);
}</pre>
</div>
<p>Here i have used a simple gradient effect with Css3. This effect is compatible with all the browsers. Make this div position relative, such that we can place our corner effect. You can modify the color of the gradient by modifying the start and end color string.</p>
<p>Step 2] Add the folded corner effect into the above div element.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
</pre>
<pre>.searchbox:before {
content:&quot;&quot;;
position:absolute;
top:0;right:0;
border-width:0 16px 16px 0;
border-style:solid;
border-color:#fff #fff #658E15 #658E15;
background:#638903;
-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
-moz-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
display:block; width:0;
}</pre>
</div>
<p>This is the best part. We make the Top and Right position to &#8217;0&#8242; and position to be absolute. You can also change the corner of your box by changing the values to bottom:0; and left:0; </p>
<p>If you want to slope the shape the other way modify the border-width:0 16px 16px 0; to border-width:16px 16px 0 0; By doing this we can change the slope of the folded corner.</p>
<p>Now our final search box looks like,</p>
<div style="text-align: center;"><a href="http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/attachment/stylish_search_box/" rel="attachment wp-att-1270"><img class="aligncenter size-full wp-image-1270" title="stylish_search_box" src="http://rockstartemplate.com/wp-content/uploads/2011/11/stylish_search_box.jpg" alt="stylish search box CSS3 Stylish Search Box with Folded Corner Effect" width="617" height="106" /></a></div>
<div style="text-align: center;"><a title="Searchbox Demo" href="http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/attachment/demo/" rel="attachment wp-att-1271" target="_blank"><img class="aligncenter size-full wp-image-1271" title="demo" src="http://rockstartemplate.com/wp-content/uploads/2011/11/demo.jpg" alt="demo CSS3 Stylish Search Box with Folded Corner Effect" width="138" height="59" /></a></div>
<p>Check out the demo and create your own stylish buttons.</p>
<p>To know more bout CSS3, <a title="Css 3 Tutorial" href="http://rockstartemplate.com/category/tutorial/css-tutorials/" target="_blank">Click here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Designers Hand &#8211; Dynamic Stylesheet</title>
		<link>http://rockstartemplate.com/tutorial/designers-dynamic-stylesheet/</link>
		<comments>http://rockstartemplate.com/tutorial/designers-dynamic-stylesheet/#comments</comments>
		<pubDate>Sat, 02 Apr 2011 08:02:49 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cre]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[prefixer]]></category>
		<category><![CDATA[preprocessor]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=1193</guid>
		<description><![CDATA[Hi folks !! Today i am going to speak about the greatest problem we all face in CSS. It&#8217;s none other than writing your CSS code from scratch. Hate writing vendor prefixes for all browsers ? Hate organizing your CSS files ? Hate hard coding the same values every time in the properties field? Here [...]]]></description>
			<content:encoded><![CDATA[<p>Hi folks !! Today i am going to speak about the greatest problem we all face in CSS. It&#8217;s none other than writing your CSS code from scratch.</p>
<p>Hate writing vendor prefixes for all browsers ? Hate organizing your CSS files ? Hate hard coding the same values every time in the properties field?</p>
<p>Here comes the solution for you guys.</p>
<p>Just by typing this,</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
</pre>
<pre>.banner{
border-radius: 2em;
box-shadow: #f2f2f2 0 0 5px;
}</pre>
</div>
<p>You can get this,</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre>
<pre>.banner {
-moz-border-radius: 2em;
-moz-box-shadow: #f2f2f2 0 0 5px;
-webkit-box-shadow: #f2f2f2 0 0 5px;
-webkit-border-radius: 2em;
border-radius: 2em;
box-shadow: #f2f2f2 0 0 5px
}</pre>
</div>
<p>But HOW ? <a href="http://cssprefixer.appspot.com/" target="_blank" rel="nofollow"><strong>CSSPrefixer</strong> </a>does it for you!</p>
<p>CSS Prefixer turns your &#8216;Simple code&#8217; into &#8216;Cross browser supported&#8217; code. This Python Framework will include all the vendor prefixes for all browsers. See an example below,</p>
<p><a rel="attachment wp-att-1195" href="http://rockstartemplate.com/tutorial/designers-dynamic-stylesheet/attachment/cssprefixer/"><img class="aligncenter size-full wp-image-1195" title="cssprefixer" src="http://rockstartemplate.com/wp-content/uploads/2011/04/cssprefixer.jpg" alt="cssprefixer Designers Hand   Dynamic Stylesheet" width="600" height="211" /></a></p>
<p>Want to create a Dynamic Stylesheet with reusable values?<br />
LESS extends CSS with dynamic behavior such as variables, mixins, operations and functions. Less is a well known CSS Preprocessor application created in PHP. LESS will allow you to specify widely used values in a single place. It&#8217;s cool isn&#8217;t it ! Lets see some examples below.,</p>
<p><a rel="attachment wp-att-1199" href="http://rockstartemplate.com/tutorial/designers-dynamic-stylesheet/attachment/less/"><img class="aligncenter size-full wp-image-1199" title="less" src="http://rockstartemplate.com/wp-content/uploads/2011/04/less.jpg" alt="less Designers Hand   Dynamic Stylesheet" width="620" height="284" /></a></p>
<p style="text-align: center;">{Courtesy <a href="http://lesscss.org/" target="_blank" rel="nofollow">LESSCSS</a>.Org}</p>
<p>You can check the Less code in the above Screen shot. It declares a new reusable color variable, so that, whenever we need to change the color, we can go ahead and change the color value in single place. It makes life easy <img src='http://rockstartemplate.com/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Designers Hand   Dynamic Stylesheet" class='wp-smiley' title="Designers Hand   Dynamic Stylesheet" />  Lets see another example.,</p>
<p><a rel="attachment wp-att-1200" href="http://rockstartemplate.com/tutorial/designers-dynamic-stylesheet/attachment/lesscss/"><img class="aligncenter size-full wp-image-1200" title="Lesscss" src="http://rockstartemplate.com/wp-content/uploads/2011/04/Lesscss.jpg" alt="Lesscss Designers Hand   Dynamic Stylesheet" width="620" height="284" /></a></p>
<p>You can find the list of CSS Preprocessors @ <a href="http://www.catswhocode.com/blog/8-css-preprocessors-to-speed-up-development-time" target="_blank"  rel="nofollow">Speed up development time</a>.</p>
<p>Stay tuned for more &#8220;Make your life easy&#8221; kind of posts <img src='http://rockstartemplate.com/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Designers Hand   Dynamic Stylesheet" class='wp-smiley' title="Designers Hand   Dynamic Stylesheet" /> </p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/tutorial/designers-dynamic-stylesheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Backgrounds in CSS3</title>
		<link>http://rockstartemplate.com/tutorial/multiple-backgrounds-in-css3/</link>
		<comments>http://rockstartemplate.com/tutorial/multiple-backgrounds-in-css3/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 20:18:11 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css3.0]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=1065</guid>
		<description><![CDATA[One of the biggest problem with CSS2, is the inability to add more than one  background to a particular division. This inability has been solved in CSS3 ! CSS3 Backgrounds and Borders Module in have got lots of new features. Adding multiple backgrounds is made simple using the multiple background image enhancement in CSS3. As [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">One of the biggest problem with CSS2, is the inability to add more than one  background to a particular division. This inability has been solved in CSS3 ! CSS3 Backgrounds and Borders Module in have got lots of new features.</p>
<p style="text-align: justify;">Adding multiple backgrounds is made simple using the multiple background image enhancement in CSS3. As for the CSS2, we specify a Div above another Div in order to get multiple backgrounds. But with the new rules in CSS3, we can easily add multiple backgrounds to a single division in HTML.</p>
<p style="text-align: justify;">We can have any number of layers in CSS3. The number of layers is determined by the number of comma separated values in the  Background property.</p>
<p>For example.,</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
</pre>
<pre>#Multiple
{
border: 2px solid #cccccc;
&lt;strong&gt;background:&lt;span style=&quot;color: #993366;&quot;&gt;url(image1.gif) center&lt;/span&gt;, &lt;span style=&quot;color: #000080;&quot;&gt;url(image2.gif) center no-repeat&lt;/span&gt;;&lt;/strong&gt;
height: inherit;
width: inherit;
}</pre>
</div>
<p>or we can also write like this,</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre>
<pre>#Multiple
{
border: 2px solid #cccccc;
&lt;strong&gt;background-image: url(image1.gif), url(image2.gif);
background-position: center , center;
background-origin: border-box, content-box;
background-repeat: no-repeat,no-repeat;&lt;/strong&gt;
height: inherit;
width: inherit;
}</pre>
</div>
<p>Refer to the Output below.,</p>
<div style="border: 2px solid #cccccc; background: url(http://rockstartemplate.com/background2.gif) no-repeat scroll center , url(http://rockstartemplate.com/background1.gif) no-repeat scroll center transparent; height: 449px; width: 449px;">
<p style="padding-left: 115px; padding-top: 120px;">This is an Example for Multiple<br />
Backgrounds, using CSS 3!!</p>
</div>
<p style="text-align: justify;">
<p style="text-align: justify;">If you look through the code, you can see several background images placed on top of each other.The first image is the one which is closest to the user. The second image is placed behind the first and so on.,</p>
<p style="text-align: justify;">Browsers that support CSS3 multiple backgrounds are Firefox 3.6, Opera 10.5 and Google Chrome 3.5 version. IE uses filters to add multiple backgrounds!</p>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/tutorial/multiple-backgrounds-in-css3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Border Shadow Effect in CSS3.0</title>
		<link>http://rockstartemplate.com/tutorial/border-shadow-effect-css30/</link>
		<comments>http://rockstartemplate.com/tutorial/border-shadow-effect-css30/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 12:08:26 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[box-shadow]]></category>
		<category><![CDATA[css3.0]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=852</guid>
		<description><![CDATA[Are you still using Photoshop to create a Shadow Effect for your DIV tags and setting the image in CSS ? Or Still using JavaScript to get Shadow effect for your  images ? Yes ?  It means you are not aware of CSS 3.0 ! Stop using Photoshop  !!   Use CSS 3.0  !! One [...]]]></description>
			<content:encoded><![CDATA[<p>Are you still using Photoshop to create a Shadow Effect for your DIV tags and setting the image in CSS ? Or Still using JavaScript to get Shadow effect for your  images ? Yes ?  It means you are not aware of CSS 3.0 !</p>
<p style="text-align: center;"><strong>Stop using Photoshop  !!   Use CSS 3.0  !!</strong></p>
<p>One of the most coolest feature in CSS 3.0 is the Box shadow property. This gives you an awesome look for all the borders you design. Let us see the syntax first.</p>
<p><strong>Syntax :</strong><br />
{<br />
box-shadow: &lt;horizontal&gt; &lt;vertical&gt; &lt;blur&gt; &lt;color&gt;<br />
}</p>
<p>It looks simple but powerful. The first field in the property specifies the horizontal shadow, continued by the vertical shadow. The third field in the property specifies the blur ratio, followed by the color of the shadow.</p>
<p><strong>Cross Browser Compatibility : </strong></p>
<ul>
<li> Firefox 3.5 implements the feature as -moz-box-shadow.</li>
<li> Safari Browser implementing the feature as -webkit-box-shadow.</li>
<li> Microsoft Internet Explorer have DropShadow filter.</li>
<li> Opera Browser users are unlucky to view this shadow property.</li>
</ul>
<p>Let us see some of the examples of Box-Shadow property.</p>
<p><strong>Sample 1: Without Blur Effect</strong></p>
<div style="border-bottom: 3px solid #bdbdbd; padding: 10px; width: auto; height: auto;">
<p>Code :<br />
{<br />
box-shadow: 5px 5px #666;<br />
-moz-box-shadow: 5px 5px #666; // For Firefox Browser<br />
-webkit-box-shadow:5px 5px #666;<br />
}</p>
<p>Preview :</p>
<div class="boxeffect">This is a Sample Box Shadow Effect [Without Blur Effect]</div>
</div>
<p><strong>Sample 2: With Blur Effect</strong></p>
<div style="border-bottom: 3px solid #bdbdbd; padding: 10px; width: auto; height: auto;">
<p>Code :<br />
{<br />
box-shadow: 5px 5px 5px #666;<br />
-moz-box-shadow: 5px 5px 5px #666;<br />
-webkit-box-shadow:5px 5px 5px #666;<br />
}</p>
<p>Preview :</p>
<div class="boxeffect1">This is a Sample Box Shadow Effect [With Blur Effect]</div>
</div>
<p><strong>Sample 3: With Heavy Blur Effect</strong></p>
<div style="border-bottom: 3px solid #bdbdbd; padding: 10px; width: auto; height: auto;">
<p>Code :<br />
{<br />
box-shadow: 5px 5px 50px #BDBDBD;<br />
-moz-box-shadow: 5px 5px 50px #BDBDBD;<br />
-webkit-box-shadow:5px 5px 50px #BDBDBD;<br />
}</p>
<p>Preview :</p>
<div class="boxeffect2">This is a Sample Box Shadow Effect [With Heavy Blur Effect]</div>
</div>
<p><strong>Sample 4: With Inner Shadow Effect</strong></p>
<div style="border-bottom: 3px solid #bdbdbd; padding: 10px; width: auto; height: auto;">
<p>Code :<br />
{<br />
box-shadow: 0px 0px 5px #000;<br />
-moz-box-shadow:inset 0px 0px 5px #000;<br />
-webkit-box-shadow:inset 0 0 5px #000;<br />
}</p>
<p>Preview :</p>
<div class="boxeffect3">This is a Sample Box Shadow Effect [With Inner Shadow Effect]</div>
</div>
<p><strong>Sample 5: With Rounded Border shadow Effect</strong></p>
<div style="border-bottom: 3px solid #bdbdbd; padding: 10px; width: auto; height: auto;">
<p>Code :<br />
{<br />
box-shadow: -10px -10px 0px #000;<br />
-moz-box-shadow:-10px -10px 0px #000;<br />
-webkit-box-shadow:-10px -10px 0px #000;<br />
}</p>
<p>Preview :</p>
<div class="boxeffect4">This is a Sample Box Shadow Effect [With Rounded Border shadow Effect]</div>
</div>
<p>You can see this feature working only in Safari 3+ and Firefox 3.1 Alpha. Other browser users wont see this feature.</p>
<p>So no more Jpeg/Gif/Png for Border Shadows from now. Start using CSS3.0.</p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/tutorial/border-shadow-effect-css30/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

