Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
341 B

5 years ago
7 years ago
5 years ago
7 years ago
7 years ago
7 years ago
6 years ago
7 years ago
  1. # Crispy - Lightweight CSS / SASS Framework
  2. ## Installation
  3. ```
  4. npm install crispy-boilerplate
  5. ```
  6. Main SCSS-File:
  7. ```
  8. @import
  9. "crispy";
  10. ```
  11. After this, include Mixins you need:
  12. ```
  13. @include crispy__*()
  14. ```
  15. To overwrite defaults simple add your own config-file after importing crispy:
  16. ```
  17. @import
  18. "crispy",
  19. "config";
  20. ```