Skip to content
This repository has been archived by the owner on Mar 30, 2018. It is now read-only.

Latest commit

 

History

History
20 lines (12 loc) · 933 Bytes

CONTRIBUTING.md

File metadata and controls

20 lines (12 loc) · 933 Bytes

Contributing to CSS FilterLab

To contribute pull requests back to Adobe, please fill out and submit the Contributor License Agreement.

CSS Styles

The project uses SASS to streamline working with CSS files.

You may edit the CSS files directly. However, if you want to contribute your changes back you'll need to make the edits in the corresponding SCSS files and use SASS to regenerate the CSS files.

Working with SASS:

  • Install SASS (requires Ruby)

  • Tell SASS to watch the style folder and regenerate CSS files when you make changes to SCSS files

    • $ sass --watch --style expanded style/app.scss:style/css/app.css

See the SASS tutorial for more details on generating CSS files with SASS.

Have fun!