-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
69 lines (58 loc) · 988 Bytes
/
globals.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
body {
font-family: Arial, sans-serif;
display: flex;
height: 100vh;
margin: 0;
}
#sidebar {
width: 300px;
padding: 20px;
background-color: #f7f7f7;
box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
gap: 10px;
}
#viewDiv {
flex-grow: 1;
}
button {
padding: 10px;
background-color: #28a745;
color: white;
border: none;
cursor: pointer;
}
#directions {
margin-top: 20px;
overflow-y: auto;
}
.step {
margin-bottom: 10px;
padding: 10px;
background-color: #ff00ae;
border-radius: 5px;
}
.foot {
background-color: #ff00ae;
}
.bus {
background-color: #e0b0b0;
}
.error {
color: red;
font-weight: bold;
}
.geocoding-results {
border: 1px solid #ccc;
background-color: #fff;
padding: 10px;
margin-top: 10px;
}
.geocoding-result {
padding: 5px;
cursor: pointer;
}
.geocoding-result:hover {
background-color: #f0f0f0;
}