-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
72 lines (60 loc) · 1.23 KB
/
contact.css
File metadata and controls
72 lines (60 loc) · 1.23 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
main {
margin-left: 90px;
margin-right: 90px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
line-height: 1.5;
}
.page-title {
margin-top: 50px;
text-align: center;
}
.contact-types {
display: flex;
justify-content: center;
margin-top: 50px;
}
.contact {
box-shadow: 0px 1px 11px 1px #ddd;
width: 250px;
height: 200px;
margin-right: 20px;
padding: 25px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
text-align: center;
}
.fas {
color: teal;
}
/* MEDIA QUERY */
@media (max-width: 900px){
nav{
display: flex;
justify-content: space-between;
padding: 20px 50px ;
}
.hamburger-wrap {
display: block;
cursor: pointer;
font-size: 25px;
color: white;
}
.nav-items{
display: none ;
}
.open-nav-items{
display: flex;
flex-direction: column;
margin-top: 50px;
width: 100%;
}
.nav-links{
text-align: right;
}
}