-
Notifications
You must be signed in to change notification settings - Fork 357
/
Copy path_try-matrix.scss
63 lines (49 loc) · 1.13 KB
/
_try-matrix.scss
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
.try_matrix {
display: flex;
flex-direction: column;
.step-background {
padding: 5rem 5.625rem;
@media (max-width: 767px) {
padding: 1rem;
}
&.coloured {
background-color: #fafafa;
}
}
.step {
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
@media (max-width: 767px) {
grid-template-columns: 1fr;
}
margin-block: auto;
.instructions {
display: flex;
flex-direction: column;
padding-block: 1rem;
h3 {
font-size: 2.2rem;
margin-top: 0;
}
p {
font-size: 1.3rem;
}
}
img {
max-height: 220px;
max-width: 360px;
margin: auto;
@media (max-width: 767px) {
margin-block: 2rem;
max-width: calc(100% - 2rem);
}
}
}
.cta-wrapper {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
}