blob: 7628830bc648ca2052a9b89b23e8f49f8a2b66a0 (
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
|
// colors
$white : #ffffff
$orange : #FFBE12
$black : #18191C
$grey : #747577
$dark-orange: #FD8F01
$form-fields: #666666
// 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
@if $media == md
@media only screen and (max-width: 991px)
@content
// 767px and down
@if $media == sm
@media only screen and (max-width: 767px)
@content
// 575px and down
@if $media == esm
@media only screen and (max-width: 575px)
@content
// 450px and down
@if $media == usm
@media only screen and (max-width: 450px)
@content
// 375px and down
@if $media == xsm
@media only screen and (max-width: 375px)
@content
|