summaryrefslogtreecommitdiff
path: root/sass/settings.sass
blob: 01b3d9565d9000ced01fe75dcbe18d2bc1bd4d43 (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
// 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
	@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