-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.css
More file actions
74 lines (63 loc) · 1.26 KB
/
Copy pathexperience.css
File metadata and controls
74 lines (63 loc) · 1.26 KB
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
.experience-foundation {
padding: 100px clamp(24px, 6vw, 92px);
border-top: 1px solid var(--line);
background: #e7ece8;
}
.experience-foundation > div:first-child {
display: grid;
grid-template-columns: .55fr 1fr;
gap: 50px;
}
.experience-foundation h2 {
max-width: 900px;
margin: 0;
font-size: clamp(38px, 5vw, 68px);
line-height: 1;
letter-spacing: -.045em;
}
.experience-facts {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
margin-top: 45px;
}
.experience-facts article {
min-height: 170px;
padding: 25px;
border: 1px solid var(--line);
border-radius: var(--radius);
background: #fff;
}
.experience-facts strong,
.experience-facts span {
display: block;
}
.experience-facts strong {
font-size: 52px;
letter-spacing: -.05em;
}
.experience-facts span {
margin-top: 16px;
color: var(--muted);
line-height: 1.5;
}
.experience-note {
max-width: 1080px;
margin: 30px 0 0;
color: var(--muted);
font-size: 16px;
line-height: 1.65;
}
@media (max-width: 900px) {
.experience-foundation > div:first-child {
grid-template-columns: 1fr;
}
.experience-facts {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.experience-facts {
grid-template-columns: 1fr;
}
}