diff options
Diffstat (limited to 'design/sassold/_queries.scss')
-rw-r--r-- | design/sassold/_queries.scss | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/design/sassold/_queries.scss b/design/sassold/_queries.scss deleted file mode 100644 index 8a0eec2..0000000 --- a/design/sassold/_queries.scss +++ /dev/null @@ -1,30 +0,0 @@ -$breakpoint-omega: 420px; //728 -$breakpoint-alpha: 728px; //728 -$breakpoint-beta: 824px; //784 -$breakpoint-gamma: 960px; -$breakpoint-delta: 1170px; -$breakpoint-epsilon: $max_width; - -@mixin breakpoint($point) { - @if $point == "omega" { - @media screen and (min-width:$breakpoint-omega ){ @content; } - } - @if $point == "alpha" { - @media screen and (min-width:$breakpoint-alpha ){ @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; } - } -} |