blob: 9cf5631b40534f0155d57afe7fdff6176c0f836c (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// colors
$white : #ffffff
$orange : #FFBE12
$black : #18191C
$grey : #747577
$dark-orange: #FD8F01
// mixins
@mixin resp($media)
// 1200px and up
@if $media == xlg
@media only screen and (min-width: 1200px)
@content
// 1400px and down
@if $media == elg
@media only screen and (max-width: 1400px)
@content
// 1199px and down
@if $media == lg
@media only screen and (max-width: 1199px)
@content
// 991px and down
@else if $media == md
@media only screen and (max-width: 991px)
@content
// 767px and down
@else if $media == sm
@media only screen and (max-width: 767px)
@content
// 575px and down
@else if $media == esm
@media only screen and (max-width: 575px)
@content
// 450px and down
@else if $media == usm
@media only screen and (max-width: 450px)
@content
// 390px and down
@else if $media == xsm
@media only screen and (max-width: 390px)
@content
// 350px and down
@else if $media == exsm
@media only screen and (max-width: 350px)
@content
|