forked from reiniergs/starters-step-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
media-queries.css
97 lines (76 loc) · 1.73 KB
/
media-queries.css
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
@media (max-width: 1024px) {
.code-challenge_fold {
margin: 0 48px;
}
.code-challenge_fold-content-container {
flex-direction: column;
}
.code-challenge_fold-content {
align-items: center;
display: flex;
flex-direction: column;
padding: 164px 0 48px 0;
}
.code-challenge_fold-content-title {
text-align: center;
}
.code-challenge_fold-question {
text-align: center;
}
.code-challenge_fold-link-container {
display: flex;
justify-content: center;
}
.code-challenge_fold-image {
padding-bottom: 48px;
width: 100%;
}
.code-challenge_gamer-section {
margin: 100px 48px;
}
.profile-card {
margin-bottom: 32px;
}
.gamer-section_footer-container {
padding-top: 16px;
}
}
@media (max-width: 700px) {
.code-challenge_fold {
margin: 0 16px;
}
.code-challenge_fold-content {
padding: 120px 0 0 0;
}
.code-challenge_fold-content-title {
font-size: 32px;
margin-bottom: 48px;
}
.code-challenge_fold-question-container {
margin-bottom: 24px;
}
.code-challenge_fold-question {
font-size: 20px;
}
.fold-link--green {
margin-right: 16px;
}
.code-challenge_fold-image {
padding-bottom: 24px;
}
.code-challenge_gamer-section {
margin: 48px 16px;
}
.gamer-section_search-container {
width: calc(100% - 32px);
}
.gamer-section_input-search-element {
width: 100%;
}
.profile-card {
margin-bottom: 24px;
}
.gamer-section_footer-container {
margin-top: 0;
}
}