-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontactus.css
151 lines (132 loc) · 2.65 KB
/
contactus.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
background: url(background.jpg) no-repeat;
background-size: cover;
/* display: flex; */
justify-content: center;
align-items: center;
}
.active{
background: beige;
}
.contact-section{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.contact-info{
color: #fff;
float: left;
max-width: 500px;
line-height: 65px;
padding-left: 50px;
font-size: 18px;
}
.contact-info i{
margin-right: 20px;
font-size: 25px;
}
.contact-info{
flex: 1;
}
.map{
margin: 30px 50px;
}
.map{
filter: grayscale(0.2);
box-shadow: 2px 2px 20px rgba(0,0,0,0.2);
border: 2px solid cornsilk;
float: right;
}
@media screen and (max-width: 950px){
.contact-section{
flex-direction: column;
}
.contact-info, .map{
margin: 30px 50px;
}
}
/*css for alert messages*/
.header {
background-color: #000000;
padding: 2%;
}
.header a{
text-decoration-line: none;
color:#ffffff;
}
.footer {
background-color: #000000;
padding: 15px 10px;
color:#ffffff;
text-align:center;
line-height: 30px;
font-size:10px;
}
#social-media img{
display:inline-block;
width:30px;
height:30px;
margin:0 1% 0 1%;
}
body{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
nav div#navigation{
text-decoration: none;
background:rgba(0,0,0,0.1);
padding:2%;
/*margin:2%;*/
text-align:center;
}
nav>div>a{
color: black;
text-align: center;
padding: 10px 15px 10px 15px;
text-decoration: none;
font-size: 16px;
line-height: 25px;
border-radius: 4px;
}
nav>div>a:hover{
background:rgba(255, 255, 255, 0.6);
color:#000000;
}
.dropbtn {
background-color: #000000;
color: white;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropdown {
position: relative;
float:right;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 130px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
right: 0;
}
.dropdown-content a {
color: black;
padding: 4%;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: rgba(0,0, 0, 0.2);
}
.dropdown:hover .dropdown-content {
display: block;
}