_grid-settings.scss 885 Bytes
Newer Older
1
@import "neat/neat-helpers";
2

3
// Change the grid settings
4
$max-width: 1200px;
5 6

// Override the default global box-sizing
7 8
$border-box-sizing: false;

9 10
// Grid width variables
$large-min-width: 769px;
11

12
// breakpoints
13 14 15 16 17
$bp-tiny: new-breakpoint(max-width 320px 4);
$bp-small: new-breakpoint(min-width 321px max-width 540px, 4);
$bp-medium: new-breakpoint(min-width 541px max-width 768px, 8);
$bp-large: new-breakpoint(min-width $large-min-width max-width 979px, 12);
$bp-huge:  new-breakpoint(min-width 980px 12);
18 19 20 21 22 23 24

// edX-centric breakpoints (to be temporarily used with edx.org features only)
$edx-bp-tiny: new-breakpoint(max-width 320px 4);
$edx-bp-small: new-breakpoint(min-width 321px max-width 540px, 4);
$edx-bp-medium: new-breakpoint(min-width 541px max-width 768px, 8);
$edx-bp-large: new-breakpoint(min-width $large-min-width 12);
$edx-bp-huge:  new-breakpoint(min-width 980px 12);