<?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>Pro-Tek Blog &#187; SCSS</title>
	<atom:link href="http://www.pro-tekconsulting.com/blog/tag/scss/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pro-tekconsulting.com/blog</link>
	<description>For UI developers / UI designers and UI trends</description>
	<lastBuildDate>Thu, 05 Sep 2019 03:59:47 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.34</generator>
	<item>
		<title>USING SASS, IN CLASS-B, I WOULD LIKE TO INHERIT ALL PROPERTIES AND NESTED DECLARATIONS OF CLASS-A. HOW IS THIS DONE, INCLUDING ANOTHER CLASS IN SCSS?</title>
		<link>http://www.pro-tekconsulting.com/blog/using-sass-in-class-b-i-would-like-to-inherit-all-properties-and-nested-declarations-of-class-a-how-is-this-done-including-another-class-in-scss/</link>
		<comments>http://www.pro-tekconsulting.com/blog/using-sass-in-class-b-i-would-like-to-inherit-all-properties-and-nested-declarations-of-class-a-how-is-this-done-including-another-class-in-scss/#comments</comments>
		<pubDate>Tue, 01 Mar 2016 03:23:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[SASS]]></category>
		<category><![CDATA[SCSS]]></category>
		<category><![CDATA[Sass]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=1343</guid>
		<description><![CDATA[<p>Using SASS, in class-b, I would like to inherit all properties and nested declarations of class-a. How is this done, Including another class in SCSS? .class-a{ Backgroung-color:red; font-size: 90px; } .class-b{ @extend .class-a; color: black; } &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/using-sass-in-class-b-i-would-like-to-inherit-all-properties-and-nested-declarations-of-class-a-how-is-this-done-including-another-class-in-scss/">USING SASS, IN CLASS-B, I WOULD LIKE TO INHERIT ALL PROPERTIES AND NESTED DECLARATIONS OF CLASS-A. HOW IS THIS DONE, INCLUDING ANOTHER CLASS IN SCSS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>Using SASS, in class-b, I would like to inherit all properties and nested declarations of class-a. How is this done, Including another class in SCSS?</h4>
<p>.class-a{<br />
Backgroung-color:red;<br />
font-size: 90px;<br />
}<br />
.class-b{<br />
@extend .class-a;<br />
color: black;<br />
}<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/using-sass-in-class-b-i-would-like-to-inherit-all-properties-and-nested-declarations-of-class-a-how-is-this-done-including-another-class-in-scss/">USING SASS, IN CLASS-B, I WOULD LIKE TO INHERIT ALL PROPERTIES AND NESTED DECLARATIONS OF CLASS-A. HOW IS THIS DONE, INCLUDING ANOTHER CLASS IN SCSS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/using-sass-in-class-b-i-would-like-to-inherit-all-properties-and-nested-declarations-of-class-a-how-is-this-done-including-another-class-in-scss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHAT&#8217;S THE DIFFERENCE BETWEEN SCSS AND SASS?</title>
		<link>http://www.pro-tekconsulting.com/blog/whats-the-difference-between-scss-and-sass/</link>
		<comments>http://www.pro-tekconsulting.com/blog/whats-the-difference-between-scss-and-sass/#comments</comments>
		<pubDate>Tue, 05 Jan 2016 03:34:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[SCSS AND SASS]]></category>
		<category><![CDATA[Sass]]></category>
		<category><![CDATA[SCSS]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=1242</guid>
		<description><![CDATA[<p>What&#8217;s the difference between SCSS and Sass? Sass (the preprocessor) allows two different syntaxes: SCSS (a CSS-like syntax) and Sass (indented syntax). The new main syntax is “SCSS”, is a superset of CSS3’s syntax. This means that every valid CSS3 stylesheet is valid SCSS as well. SCSS files use the extension .scss Sass, the older [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/whats-the-difference-between-scss-and-sass/">WHAT&#8217;S THE DIFFERENCE BETWEEN SCSS AND SASS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>What&#8217;s the difference between SCSS and Sass?</h4>
<p>Sass (the preprocessor) allows two different syntaxes: SCSS (a CSS-like syntax) and Sass (indented syntax).</p>
<p>The new main syntax is “SCSS”, is a superset of CSS3’s syntax. This means that every valid CSS3 stylesheet is valid SCSS as well. SCSS files use the extension .scss</p>
<p>Sass, the older syntax indented syntax is intended for people who prefer conciseness over similarity to CSS. Instead of brackets and semicolons, it uses the indentation of lines to specify blocks. Files in the indented syntax use the extension .sass</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/whats-the-difference-between-scss-and-sass/">WHAT&#8217;S THE DIFFERENCE BETWEEN SCSS AND SASS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/whats-the-difference-between-scss-and-sass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
