blob: c83c1ebbe6712e1c4cf921d819f7b039053f41d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
@import "_variables.sass";
h1, h2, h3
font-family: $font-family-big
h1
font-size: 3em
h2
font-size: 2em
@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
|