|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //@import 'colors';
-
- @import "susy";
- $susy: (
- 'columns': susy-repeat(8, 202px),
- 'gutters': 1em,
- 'spread': 'narrow',
- 'container-spread': 'narrow',
- );
-
- * {
- box-sizing:border-box;
- }
- $SiteMaxWidth: 1000px;
- $BannerMinWidth:750px;
-
-
-
-
- $view_biggest: "only screen and (min-width : 1000px)";
- $view_compact: "only screen and (max-width : 950px)";
- $view_mobile: "only screen and (max-width : 750px)";
- $view_not_mobile: "only screen and (min-width : 751px)";
- $view_smallest_banner: "only screen and (max-width : 750px)";
-
-
- @import "colours";
- @import "freaCMSfeatures";
- //@import "fonts";
- @import "structure";
- @import "design";
- //@import "admin";
-
- //@import "dev";
-
-
- // mobile query:
- $mobile-device: "only screen and (max-width : 800px)";
- $not-mobile: "only screen and (min-width : 801px)";
-
-
|