-
Notifications
You must be signed in to change notification settings - Fork 159
/
index.responsive.css
76 lines (58 loc) · 1005 Bytes
/
index.responsive.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
@media (min-width: 576px) {
.main-title {
display: flex;
flex-direction: column;
}
}
@media (min-width: 768px) {
.container-contents {
padding: 1rem 4rem;
}
.container-labels {
height: calc(100vh - 120px);
}
.label-box {
width: 50%;
}
.track-careers > ul {
grid-template-columns: repeat(2, 1fr);
}
.footer__content1 {
justify-content: flex-start;
}
.container-info {
width: 48%;
}
}
@media (min-width: 1024px) {
.track-careers > ul {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 1200px) {
.main-title {
font-size: 3rem;
}
.track-careers > ul {
grid-template-columns: repeat(4, 1fr);
}
}
@media (min-width: 1400px) {
.main-title {
font-size: 3.75rem;
}
#tag,
.label__text {
font-size: 1.55rem;
}
.track-careers > h2 {
font-size: 3rem;
}
.track-careers>p,
.track-careers>ul {
font-size: 1.45rem;
}
.track-careers>ul {
font-size: 1.3rem;
}
}