-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (43 loc) · 848 Bytes
/
Copy pathstyles.css
File metadata and controls
49 lines (43 loc) · 848 Bytes
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
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background-color: #f2f2f2;
}
.container {
max-width: 600px;
margin: 0 auto;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.button-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; /* Added to center buttons horizontally and vertically */
height: 100vh; /* Added to center buttons vertically */
}
button {
margin: 10px;
padding: 10px;
font-size: 16px;
cursor: pointer;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 5px;
}
#map-container {
display: none;
}
#map {
height: 50vh;
width: 100%;
margin-top: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}