summaryrefslogtreecommitdiff
path: root/src/sass/_bootstrap.sass
diff options
context:
space:
mode:
Diffstat (limited to 'src/sass/_bootstrap.sass')
-rw-r--r--src/sass/_bootstrap.sass21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/sass/_bootstrap.sass b/src/sass/_bootstrap.sass
index 46309ba..755ffb1 100644
--- a/src/sass/_bootstrap.sass
+++ b/src/sass/_bootstrap.sass
@@ -1,7 +1,22 @@
@import "_variables.sass";
-body
- font-family: $font-family
-
h1
font-family: $font-family-big
+
+@mixin breakpoint($point)
+ @if $point == desktop
+ @media (min-width: 70em)
+ @content
+ @else if $point == laptop
+ @media (min-width: 64em)
+ @content
+ @else if $point == tablet
+ @media (max-width: 1280px)
+ @content
+ @else if $point == phablet
+ @media (max-width: 1000px)
+ @content
+ @else if $point == mobileonly
+ @media (max-width: 768px)
+ @content
+