-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.module.css
More file actions
72 lines (64 loc) · 1.25 KB
/
index.module.css
File metadata and controls
72 lines (64 loc) · 1.25 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
.layout {
min-height: 100dvh;
display: flex;
flex-direction: column;
justify-content: space-between;
margin: 0;
font-family: 'Figtree Variable', 'Helvetica', 'Arial', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: normal;
line-height: 150%;
color: var(--white);
text-align: left;
background-color: var(--brand-blue);
background-size: contain;
background-position: left bottom;
background-repeat: no-repeat;
}
.main {
display: flex;
justify-content: center;
flex: 1 0 auto;
margin: 0 auto;
width: 100%;
padding: 6.875rem 1.875rem 1.875rem;
}
.headerLink {
text-decoration: none;
color: var(--white);
min-height: 70px;
display: flex;
align-items: center;
}
.footer {
display: flex;
flex-wrap: wrap;
justify-content: start;
align-items: center;
padding: 2.5rem 1rem 0.5rem;
color: var(--white);
font-size: 12px;
font-weight: 400;
line-height: 150%;
margin: 0 auto;
width: 100%;
max-width: 1076px;
gap: 0.5rem;
a {
color: var(--white);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
@media screen and (min-width: 1000px) {
.main {
max-width: 670px;
padding: 1.5rem 0 0;
}
.footer {
padding: 3rem 2rem 1.25rem;
}
}