-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
60 lines (57 loc) · 1.07 KB
/
contact.css
File metadata and controls
60 lines (57 loc) · 1.07 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
.contact{
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Poppins', sans-serif
}
.contact h1{
width: 100vw;
text-align: center;
}
.contact .media{
margin-top: 100px;
width: 60vw;
display: flex;
flex-direction: row;
justify-content: space-evenly;
height: 20vh;
}
#li{
width: 10vw;
height: 20vh;
background-image: url(linkedin.png);
background-size: cover;
border: none;
cursor: pointer;
}
#ma{
width: 10vw;
height: 20vh;
background-image: url(mail.png);
background-size: cover;
border: none;
cursor: pointer;
}
@media (max-width:800px){
.contact .media{
width: 90vw;
height: 40vh;
}
#li,#ma{
width: 30vw;
height: 30vh;
}
}
@media (max-width:450px){
.contact .media{
width: 90vw;
height: 80vh;
flex-direction: column;
align-items: center;
}
#li,#ma{
width: 60vw;
height: 30vh;
}
}