-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
64 lines (55 loc) · 847 Bytes
/
contact.css
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
#bottomBox {
display: flex;
margin-top: 200px;
justify-content: center;
width: 90vw;
}
.infoBox {
display: flex;
float: left;
padding: 0px;
justify-content: center;
color: white;
text-align: center;
}
#pic {
height: 50vw;
margin: 0px;
padding: 0px;
}
p {
font-size: 18px;
margin: 5px;
}
h1 {
margin-top: 0px;
font-size: 36px;
border-bottom: 3px solid black;
}
#contactInfo {
display: flex;
flex-direction: column;
justify-content: center;
margin-left: 20px;
margin-bottom: 5px;
padding: 20px;
background-color: #DF331F;
align-items: center;
}
@media only screen and (max-width: 750px) {
#bottomBox {
margin-top: 150px;
}
#contactInfo {
padding: 0px;
margin: 0px;
width: 50vw;
}
p {
font-size: 12px;
}
h1 {
font-size: 24px;
width: 40vw;
}
}