Using Control Statement in SASS
SASS provides control statement to better css authoring. Some of the useful controls are:- —@IF , @IF..ELSE, @FOR,@WHILE,@EACH You can check my previous posts to get started with SASS. In this Demo, “We will see how to use IF,FOR, WHILE and EACH statement while writing SCSS code”. Below HTML […]
Exploring SASS Color Methods
SASS provide bunch of inbuilt methods to make the CSS Authoring Simple and easy. In this Demo ,“We will explore SASS inbuilt methods for COLORING“. RGB/RGBA(Red,Green,Blue with or without Alpha) and HSL/HSLA(Hue,Saturation,Lightness with or without Alpha) are popular used color model for web development. RGB model is known to everybody.In this model all colors are […]
Understanding SASS Features
SASS(Syntactically Awesome Style Sheet) is an CSS authoring framework. You can see my previous post for basic explanation and installation of SASS. There are many features offered by SASS framework.Some of them are:- — Nesting —Variables —Mixin —Inheritance —Placeholder —SASS Script In this Demo,“We are going to understand […]
Compass A CSS Authoring Framework
“COMPASS” is another popular CSS Authoring framework.It is based on SASS. It provides two powerful modules ‘COMPASS CORE‘ and ‘BLUEPRINT‘. You can know more from the below link:- http://compass-style.org/reference/compass/ In this Demo, “We will install the compass gem and attach the watcher to one of our project to monitor SCSS change“. The Initial project strucure:- […]