mostly filebased Content Presentation System
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.

main.scss 775B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //@import 'colors';
  2. @import "susy";
  3. $susy: (
  4. 'columns': susy-repeat(8, 202px),
  5. 'gutters': 1em,
  6. 'spread': 'narrow',
  7. 'container-spread': 'narrow',
  8. );
  9. * {
  10. box-sizing:border-box;
  11. }
  12. $SiteMaxWidth: 1000px;
  13. $BannerMinWidth:750px;
  14. $view_biggest: "only screen and (min-width : 1000px)";
  15. $view_compact: "only screen and (max-width : 950px)";
  16. $view_mobile: "only screen and (max-width : 750px)";
  17. $view_not_mobile: "only screen and (min-width : 751px)";
  18. $view_smallest_banner: "only screen and (max-width : 750px)";
  19. @import "colours";
  20. @import "fonts";
  21. @import "structure";
  22. @import "design";
  23. @import "admin";
  24. //@import "dev";
  25. // mobile query:
  26. $mobile-device: "only screen and (max-width : 800px)";
  27. $not-mobile: "only screen and (min-width : 801px)";