-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathget-involved.css
More file actions
107 lines (90 loc) · 2.24 KB
/
get-involved.css
File metadata and controls
107 lines (90 loc) · 2.24 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.get-involved {
max-width: var(--layout-inner-max-width);
margin: auto;
padding: 70px 40px;
h2,
p,
a {
color: var(--color-navy);
}
hr {
margin: 0 auto 30px;
}
.get-involved__title {
font-size: 2rem;
font-weight: 500;
line-height: 3rem;
text-align: center;
margin-bottom: 16px;
}
.get-involved__row {
display: grid;
gap: 16px;
grid-template-columns: 1fr;
}
.get-involved__column--newsletter,
.get-involved__column--content {
display: flex;
flex-direction: column;
justify-content: center;
gap: 16px;
p {
margin: 0;
text-align: center;
}
}
.get-involved__column--newsletter {
p {
font-family: 'Rubik', sans-serif;
font-size: 1.5rem;
font-weight: 500;
line-height: 2.25rem;
}
input {
border: 1px solid rgba(220, 233, 250, 1);
border-radius: 8px;
box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.07);
color: var(--color-navy);
min-height: 50px;
font-size: 1rem;
padding: 12px 20px;
width: 100%;
}
input::placeholder {
color: rgba(160, 168, 184, 1);
}
.get-involved__form__row {
display: grid;
gap: 12px;
grid-template-columns: 1fr;
width: 100%;
}
}
@media (min-width: 834px) {
padding: 96px 56px 0;
.get-involved__title {
font-size: 2.625rem;
}
.get-involved__column--newsletter {
.get-involved__form__row {
grid-template-columns: 300px max-content;
justify-content: center;
}
}
}
@media (min-width: 1440px) {
padding: 96px 0;
.get-involved__row {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.get-involved__column--newsletter,
.get-involved__column--content {
gap: 48px;
}
.get-involved__column--content {
p {
text-align: left;
}
}
}
}