-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
63 lines (63 loc) · 1.11 KB
/
styles.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
* {
margin: 0;
padding: 0;
font-family: "Inter", sans-serif;
}
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
#map {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #323232;
}
#directions {
position: absolute;
z-index: 1000;
width: 30%;
max-height: 50%;
right: 20px;
top: 20px;
overflow-y: auto;
/* Show a scrollbar if needed */
background: white;
font-family: Arial, Helvetica, Verdana;
line-height: 1.5;
font-size: 14px;
padding: 10px;
}
.search-container {
position: fixed;
top: 20px;
left: 20px;
background: rgba(255, 255, 255, 0.8);
padding: 10px;
border-radius: 5px;
z-index: 1000;
}
.search-container input {
margin-bottom: 10px;
padding: 5px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th,
td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}