burliEnterprises / pascetti.css

CSS framework made with SASS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pascetti.css

This project is using the 7-1 architecture pattern and sticking to Sass Guidelines writing conventions.

Each folder of this project has its own README.md file to explain the purpose and add extra information. Be sure to browse the repository to see how it works.

Sass conversion

This project uses the .scss convention (because indentation sucks). If you want to use .sass, run the following:

sass-convert -F scss -T sass -i -R ./  && find . -iname “*.scss” -exec bash -c 'mv "$0" “${0%\.scss}.sass"' {} \;

Compiling

When using node-sass - for building

  • install node-sass if not yet installed:
npm install -g node-sass
  • run build command from command line:
npm run autocompile-scss 
(or node-sass stylesheets/main.scss dist/main.css)

Resources

https://levelup.gitconnected.com/bundle-a-css-library-6e9ff1ff8a2c https://geekyants.com/blog/building-your-own-css-framework-373 Scaling units Live Server

Autocompile Sass Find font sizes

About

CSS framework made with SASS

License:MIT License


Languages

Language:SCSS 100.0%