-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
118 lines (103 loc) · 1.96 KB
/
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
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
108
109
110
111
112
113
114
115
116
117
118
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
:root {
--headerfooterBgColor: #c7322e;
--mainBgColor: rgb(233, 233, 233);
}
* {
font-family: 'Montserrat', sans-serif;
}
.contact {
display: flex;
justify-content: space-evenly;
position: relative;
margin: 10px;
}
#map-id {
height: 90vh;
width: 45vw;
margin:5px auto;
}
.contact-details {
/* display: flex;
flex-direction: column; */
/* align-items: center; */
margin: 5px 0px;
width: 45vw;
color: var(--headerfooterBgColor);
background-color: white;
border: 1px solid var(--headerfooterBgColor);
border-radius: 5px;
padding: 15px;
}
.contact-details ul {
margin: 10px 0px;
}
.generalContact li {
margin: 15px 0px;
list-style: none;
}
.social {
margin: 0px auto;
display: flex;
justify-content: center;
position: absolute;
bottom: 1vw;
right: 21vw;
}
.social li {
list-style: none;
margin: 0px 5px;
}
.social li a {
text-decoration: none;
color: var(--headerfooterBgColor);
}
@media screen and (max-width: 690px) {
.contact {
flex-direction: column;
}
#map-id {
display: block;
height: 40vh;
width: 95vw;
margin: 5px auto;
}
.contact-details {
/* display: block; */
width: 95vw;
height: 40vh;
margin: 5px auto;
/* overflow-wrap: break-word; */
box-sizing: border-box;
}
.social {
right: 39vw;
}
}
@media screen and (max-width: 540px) {
.contact{
margin: 0;
}
nav ul li{
font-size: 14px;
}
#logo {
height: 8vh;
margin: 0;
}
.map{
margin: 0;
}
.contact-details{
margin: 5px auto;
font-size: 70%;
}
}
@media screen and (max-height: 700px) {
#map-id{
height: 30vh;
}
.contact-details{
height: 30vh;
}
}