-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactSection.module.css
More file actions
63 lines (57 loc) · 987 Bytes
/
Copy pathContactSection.module.css
File metadata and controls
63 lines (57 loc) · 987 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
.container {
width: 70%;
margin: 0 auto 1.5rem;
margin-top: 10px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 10px;
background: rgba(0, 0, 0, 0.05);
}
.header {
width: 95%;
margin: 0 auto 1.5rem;
background: #111827;
color: #f9fafb;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
padding: 0.75rem 1rem;
font-size: 2rem;
font-weight: bold;
text-align: center;
}
.buttonWrapper {
display: flex;
justify-content: center;
margin-top: 1rem;
}
.textInputWrapper {
display: flex;
margin: 0 auto 1.5rem;
width: 95%;
justify-content: center;
margin-top: 1rem;
gap: 3rem;
}
/* less-than-large laptop */
@media (max-width: 1024px) {
.container {
width: 80%;
}
}
/* tablet / small-desktop */
@media (max-width: 768px) {
.textInputWrapper {
gap: 1.5rem;
}
.container {
width: 90%;
}
}
/* mobile phones */
@media (max-width: 480px) {
.textInputWrapper {
gap: 1rem;
}
.container {
width: 100%;
}
}