-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmapstyles.css
168 lines (142 loc) · 3.24 KB
/
mapstyles.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
@font-face{
font-family: "Agbalumo";
src: url(Agbalumo/Agbalumo-Regular.ttf) format("truetype");
font-weight: normal;
font-style: normal;
}
body{
height: 100%;
font-family: "Agbalumo", sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
flex-direction: column;
margin-bottom: 20vw;
justify-content: space-between;
z-index: -1;
}
#search-container {
display: flex;
margin-bottom: 10px;
}
#pac-input {
flex: 1;
width: 70%;
padding: 10px;
font-size: 16px;
}
#search-button {
width: 30%;
padding: 10px;
font-size: 16px;
}
p{
font-size: 1.4vw;
}
h1{
text-align: center;
margin-top: 0vw;
font-size: 4.2vw;
}
h3{
text-shadow: 2px 2px 4px white;
}
.login-container {
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
width: 300px;
}
label {
display: block;
margin-bottom: 10px;
color: #666;
}
input[type="text"], input[type="password"] {
width: calc(100% - 20px);
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 3px;
}
button:hover {
background-color: #45a049;
}
/* The sidebar menu */
.sidebar {
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 1; /* Stay on top */
top: 0;
left: 0;
background-color: #111; /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 5vw; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}
/* The sidebar links */
.sidebar a {
padding: 0.8vw 0.8vw 0.8vw 5vw;
text-decoration: none;
font-size: 2.2vw;
color: #818181;
display: block;
transition: 0.3s;
}
/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
color: #f5deb3;
}
/* Position and style the close button (top right corner) */
.sidebar .closebtn {
position: absolute;
top: 0;
right: 5vw;
font-size: 3.2vw;
margin-left: 10vw;
}
/* The button used to open the sidebar */
.openbtn {
font-size: 1.5vw;
cursor: pointer;
background-color: #111;
color: white;
padding: 1vw 1.5vw;
border: none;
margin-right: 65vw;
}
.openbtn:hover {
background-color: #444;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
transition: margin-left .5s; /* If you want a transition effect */
padding: 1vw;
}
@keyframes fadeInAndPoP{
0%{
opacity: 0;
}
50%{
opacity: 0.8;
}
100%{
opacity: 0.9;
}
}
.welcome{
color: #e18b6b !important;
/* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
padding: 1vw;
text-align: center;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidebar {padding-top: 1.5vw;}
.sidebar a {font-size: 1.8vw;}
}