Sass is an extension of CSS3 which
adds nested rules, variables, mixins, selector inheritance, and more.
Sass generates well formatted CSS and makes your stylesheets
easier to organize and maintain.
SASS CHANGELOG Documentation =>
Sass is completely compatible with all versions of CSS. We take this
compatibility seriously, so that you can seamlessly use any available
CSS libraries.
There are endless number of frameworks built with Sass.
Compass,
Bourbon,
and
Susy
just to name a few.
Installation Process :-
http://www.sass-lang.com/install
open cmd ----
open cmd ----
gem install sass
http://compass-style.org/install
gem install compass
cd desktop
compass create project
http://compass-style.org/help/
cd project
compass watch
( or )
cmd ----> Ruby
gem install compass
gem uninstall compass
gem install compass --pre
config.rb
sass_path = File.dirname(__FILE__)
css_path = File.join(File.dirname(__FILE__), "..", "styles")
environment = :development
output_style = :compressed
( or )
cmd ----> Ruby
gem install compass
gem uninstall compass
gem install compass --pre
config.rb
sass_path = File.dirname(__FILE__)
css_path = File.join(File.dirname(__FILE__), "..", "styles")
environment = :development
output_style = :compressed
No comments:
Post a Comment