-
-
Notifications
You must be signed in to change notification settings - Fork 661
Expand file tree
/
Copy pathstyles.module.css
More file actions
63 lines (55 loc) · 967 Bytes
/
Copy pathstyles.module.css
File metadata and controls
63 lines (55 loc) · 967 Bytes
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
.title {
font-size: 48px;
font-weight: 700;
text-align: center;
color: var(--swm-navy-light-100);
}
.content {
font-size: 20px;
line-height: 32px;
color: var(--swm-navy-light-100);
text-align: center;
text-wrap: balance;
}
.brandContainer {
display: flex;
flex-direction: row;
justify-content: center;
gap: 4rem;
}
.brandContainer img {
width: 100px;
height: auto;
}
.downloadsWrapper {
background-color: var(--swm-blue-light-40);
margin: 6.5rem 0;
}
[data-theme='dark'] .downloadsWrapper {
background-color: var(--swm-blue-dark-80);
}
.downloadsContainer {
width: 60%;
margin: 5rem auto 7.5rem;
position: relative;
display: flex;
flex-direction: column;
gap: 2rem;
}
@media (max-width: 1440px) {
.downloadsContainer {
width: 75%;
}
}
@media (max-width: 996px) {
.downloadsContainer {
width: 85%;
gap: 3.5rem;
}
.title {
font-size: 40px;
}
.brandContainer {
gap: 2.5rem;
}
}