diff options
Diffstat (limited to 'design/old/v8/_queries.scss')
-rw-r--r-- | design/old/v8/_queries.scss | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/design/old/v8/_queries.scss b/design/old/v8/_queries.scss deleted file mode 100644 index db165ae..0000000 --- a/design/old/v8/_queries.scss +++ /dev/null @@ -1,31 +0,0 @@ -$breakpoint-alpha: 38em; //608 -$breakpoint-alpha-2: 450px; -$breakpoint-beta: 49em; //784 -$breakpoint-beta-2: 620px; -$breakpoint-gamma: 960px; -$breakpoint-delta: 1170px; -$breakpoint-epsilon: $max_width; - -@mixin breakpoint($point) { - @if $point == "alpha" { - @media screen and (min-width:$breakpoint-alpha ){ @content; } - } - @if $point == "alpha-2" { - @media screen and (min-width:$breakpoint-alpha-2 ){ @content; } - } - @else if $point == "beta" { - @media screen and (min-width: $breakpoint-beta) { @content; } - } - @else if $point == "beta-2" { - @media screen and (min-width: $breakpoint-beta-2) { @content; } - } - @else if $point == "gamma" { - @media screen and (min-width: $breakpoint-gamma) { @content; } - } - @else if $point == "delta" { - @media screen and (min-width: $breakpoint-delta) { @content; } - } - @else if $point == "epsilon" { - @media screen and (min-width: $breakpoint-epsilon) { @content; } - } -} |