Categories
CSS

Compass SCSS

compas – sass

http://sassmeister.com

http://compass-style.org/install/  -setting for new project

compass create barport –bare –sass-dir “scss” –css-dir “css”

compass watch . – lunch compass watch

config.rb

# Require any additional compass plugins here.

add_import_path “src to framework”

# Set this to the root of your project when deployed:

http_path = “/”

css_dir = “css”

sass_dir = “scss”

images_dir = “Assets/images”

javascripts_dir = “js”

# You can select your preferred output style here (can be overridden via the command line):

output_style = :expanded

# To enable relative paths to assets via compass helper functions. Uncomment:

relative_assets = true

# To disable debugging comments that display the original location of your selectors. Uncomment:

line_comments = true

http://sass-lang.com/documentation/file.SASS_REFERENCE.html#import

Leave a Reply