mostly filebased Content Presentation System
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

42 行
806B

  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 "freaCMSfeatures";
  21. //@import "fonts";
  22. @import "structure";
  23. @import "design";
  24. //@import "admin";
  25. //@import "dev";
  26. // mobile query:
  27. $mobile-device: "only screen and (max-width : 800px)";
  28. $not-mobile: "only screen and (min-width : 801px)";