_config.sass 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // Config
  2. // ---------
  3. // Use the same color all over the place? Need to do
  4. // some math with height and width and text size?
  5. // Sass supports variables as well as basic math
  6. // operations and many useful functions.
  7. //
  8. // For setting variables, see:
  9. // /sass/config/_variables.sass
  10. //
  11. // For setting mixins:
  12. // /sass/config/_mixins.sass
  13. //
  14. // For complete documentation:
  15. // http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#variables_
  16. //
  17. // Available functions:
  18. // http://sass-lang.com/docs/yardoc/Sass/Script/Functions.html
  19. // Bourbon and Bourbon Neat documentation:
  20. // Bourbon: http://bourbon.io/docs/
  21. // Bourbon Neat (grid): http://neat.bourbon.io/docs/
  22. // Import variables and mixins to be used (Bourbon)
  23. @import "../../node_modules/bourbon/app/assets/stylesheets/bourbon"
  24. @import "../../node_modules/bourbon-neat/app/assets/stylesheets/neat-helpers"
  25. // Import grid to be used (Bourbon Neat)
  26. @import "grid-settings"
  27. // We load this after we provide our overrides
  28. @import "../../node_modules/bourbon-neat/app/assets/stylesheets/neat"
  29. // Import local files
  30. @import "variables"
  31. @import "mixins"