<?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>WordPress Designer - Sidera Design &#187; css</title> <atom:link href="http://sideradesign.com/tag/css/feed/" rel="self" type="application/rss+xml" /><link>http://sideradesign.com</link> <description>Just another WordPress site</description> <lastBuildDate>Sat, 02 Jul 2011 11:10:46 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3-aortic-dissection</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>HTML5 template</title><link>http://sideradesign.com/html5-template/</link> <comments>http://sideradesign.com/html5-template/#comments</comments> <pubDate>Mon, 06 Dec 2010 18:16:00 +0000</pubDate> <dc:creator>sidera_admin</dc:creator> <category><![CDATA[Article]]></category> <category><![CDATA[css]]></category> <category><![CDATA[html5]]></category><guid isPermaLink="false">http://sideradesign.com/2010/12/06/html5-template/</guid> <description><![CDATA[This weekend, I created an HTML5 document that contains all the elements that are currently valid in the specification. I hope this can be helpful if you want to test your CSS styles. Let me know if it you find &#8230; <a href="http://sideradesign.com/html5-template/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>This weekend, I created an<a href="https://code.google.com/p/html5elements/"> HTML5 document</a> that contains all the elements that are currently valid in the specification. I hope this can be helpful if you want to test your CSS styles.<br /> Let me know if it you find it useful or if you have any feedback!</p> ]]></content:encoded> <wfw:commentRss>http://sideradesign.com/html5-template/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Semantic Star rating with the meter tag</title><link>http://sideradesign.com/semantic-star-rating-with-the-meter-tag/</link> <comments>http://sideradesign.com/semantic-star-rating-with-the-meter-tag/#comments</comments> <pubDate>Thu, 16 Sep 2010 16:44:16 +0000</pubDate> <dc:creator>sidera_admin</dc:creator> <category><![CDATA[Article]]></category> <category><![CDATA[css]]></category> <category><![CDATA[html]]></category> <category><![CDATA[html5]]></category> <category><![CDATA[semantics]]></category><guid isPermaLink="false">http://sideradesign.com/?p=591</guid> <description><![CDATA[Here&#8217;s a nice semantic way to markup and style a star rating. In this case, it represents the designer&#8217;s skills in different areas, but it could be used for a dynamic star rating system, as you&#8217;ll only need to update &#8230; <a href="http://sideradesign.com/semantic-star-rating-with-the-meter-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Here&#8217;s a nice semantic way to markup and style a star rating. In this case, it represents the designer&#8217;s skills in different areas, but it could be used for a dynamic star rating system, as you&#8217;ll only need to update the value attribute of the meter tag.</p><div id="attachment_594" class="wp-caption alignnone" style="width: 325px"><img src="http://sideradesign.com/wp-content/uploads/2010/09/ScreenHunter_06-Sep.-12-12.16.gif" alt="semantic star rating with HTML" title="semantic star rating with HTML" width="315" height="249" class="size-full wp-image-594" /><p class="wp-caption-text">semantic star rating with HTML</p></div><p>here is the markup:</p><pre class="brush: xml; title: ; notranslate">
&lt;section id=&quot;skills&quot;&gt;
&lt;h3&gt;skillset&lt;/h3&gt;
&lt;p&gt;&lt;abbr title=&quot;HyperText Markup Language&quot;&gt;HTML&lt;/abbr&gt;/&lt;abbr title=&quot;cascading stylesheets&quot;&gt;CSS&lt;/abbr&gt;: &lt;meter class=&quot;ir&quot; min=&quot;0&quot; max=&quot;5&quot; value=&quot;4&quot;&gt;4 out of 5&lt;/meter&gt;&lt;/p&gt;
&lt;p&gt;adobe photoshop: &lt;meter class=&quot;ir&quot; min=&quot;0&quot; max=&quot;5&quot; value=&quot;3&quot;&gt;3 out of 5&lt;/meter&gt;&lt;/p&gt;
&lt;p&gt;javascript: &lt;meter class=&quot;ir&quot; min=&quot;0&quot; max=&quot;5&quot; value=&quot;3&quot;&gt;3 out of 5&lt;/meter&gt;&lt;/p&gt;
&lt;p&gt;web standards: &lt;meter class=&quot;ir&quot; min=&quot;0&quot; max=&quot;5&quot; value=&quot;4&quot;&gt;4 out of 5&lt;/meter&gt;&lt;/p&gt;
&lt;p&gt;mobile development: &lt;meter class=&quot;ir&quot; min=&quot;0&quot; max=&quot;5&quot; value=&quot;3&quot;&gt;3 out of 5&lt;/meter&gt;&lt;/p&gt;
&lt;/section&gt;
</pre><p>and the CSS:</p><pre class="brush: css; title: ; notranslate">
  #skills meter{
	float: right;
	background-image: url(../images/skillstars.gif);
	background-position: 0 0;
	height: 20px;
	overflow:hidden;
	width: 114px;
  }

  #skills meter[value=&quot;0&quot;] {
	background-position: 0 0;
  }
    #skills meter[value=&quot;1&quot;] {
	background-position: 0 -22px;
  }
    #skills meter[value=&quot;2&quot;] {
	background-position: 0 -44px;
  }
    #skills meter[value=&quot;3&quot;] {
	background-position: 0 -66px;
  }
    #skills meter[value=&quot;4&quot;] {
	background-position: 0 -88px;
  }
    #skills meter[value=&quot;5&quot;] {
	background-position: 0 -110px;
  }
</pre><p>To see a demo : <a href="http://labs.webtemplateprofessional.com/app-portfolio">demo</a></p><p>The original design is from <a href="http://www.designkindle.com/">Design Kindle</a></p> ]]></content:encoded> <wfw:commentRss>http://sideradesign.com/semantic-star-rating-with-the-meter-tag/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>IE transparency and font rendering</title><link>http://sideradesign.com/ie-transparency-and-font-rendering/</link> <comments>http://sideradesign.com/ie-transparency-and-font-rendering/#comments</comments> <pubDate>Sat, 06 Feb 2010 23:16:09 +0000</pubDate> <dc:creator>sidera_admin</dc:creator> <category><![CDATA[Article]]></category> <category><![CDATA[css]]></category> <category><![CDATA[web design]]></category><guid isPermaLink="false">http://sideradesign.com/?p=247</guid> <description><![CDATA[While designing a website, I wanted to add some semi-transparent backgrounds using CSS rgba. In this article, the author suggests using a PNG as a fallback for browsers that don&#8217;t support the rgba declaration. Having read about Internet Explorer&#8217;s proprietary &#8230; <a href="http://sideradesign.com/ie-transparency-and-font-rendering/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>While designing a website, I wanted to add some semi-transparent backgrounds using <a href="http://24ways.org/2009/working-with-rgba-colour">CSS rgba.</a><br /> In this article, the author suggests using a PNG as a fallback for browsers that don&#8217;t support the rgba declaration.<br /> Having read about Internet Explorer&#8217;s proprietary filters, I decided to use that instead, to avoid having to download another image.<br /> I added the following declarations to the IE stylesheet with conditional comments:</p><pre>
.content, #primary {
       background:transparent;

     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80ebe7e7,endColorstr=#80ebe7e7);

	}

.page-title, .singular-page-title {
	       background:transparent;

                  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80146ea4,endColorstr=#80146ea4);
}
</pre><p>This is the result:<br /> <a href="http://sideradesign.com/wp-content/uploads/2010/02/with-transparency.gif"><img src="http://sideradesign.com/wp-content/uploads/2010/02/with-transparency.gif" alt="" width="402" height="175" class="alignnone size-full wp-image-246" /></a></p><p>You can see that the result is not very pretty! The font doesn&#8217;t seem to render very well.</p><p>I suspected that the IE filters were the culprit, so I removed the declarations, and here is the result:<br /> <a href="http://sideradesign.com/wp-content/uploads/2010/02/with-transparency.gif"><img src="http://sideradesign.com/wp-content/uploads/2010/02/no-transparency.gif" alt="" width="402" height="175" class="alignnone size-full wp-image-246" /></a></p><p>Much better!</p><p>Conclusion: I&#8217;ll use the PNG fallback method.</p><p>Have you experienced this issue? Is there a fix?<br /> Leave your comments!</p> ]]></content:encoded> <wfw:commentRss>http://sideradesign.com/ie-transparency-and-font-rendering/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: sideradesign.com @ 2012-02-05 07:25:43 -->
