-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.css
83 lines (76 loc) · 1.33 KB
/
main.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
html, body {
height: 100%;
margin: 0px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#map {
height: 100%;
}
nav {
padding: 10px;
background-color: #0ba1e2;
}
nav ul {
margin: 0px;
display: flex;
justify-content: center;
align-content: center;
list-style: none;
margin: 10px;
}
nav ul li {
margin-left: 10px;
float: left;
border-radius: 20px;
color: white;
padding: 10px;
cursor: pointer;
}
nav ul li:hover:not(.selected) {
background-color: rgba(255, 255, 255, 0.3);
}
li.selected {
border: 2px solid white;
}
.marker {
width: 2rem;
height: 2rem;
display: block;
left: -1.0rem;
top: -1.0rem;
position: relative;
border-radius: 3rem 3rem 0;
transform: rotate(45deg);
}
.available {
background-color: #0ba1e2;
border: 1px solid #0ba1e2;
}
.unavailable {
background-color: #53595c;
border: 1px solid #53595c;
}
.new {
background-color: #25a133;
border: 1px solid #25a133;
}
.marker i {
transform: rotate(-45deg);
position: relative;
top: 4px;
left: 4px;
font-size: 1.5rem;
color: white;
}
.popup-car {
display: flex;
}
.popup-car img {
object-fit: contain;
}
.popup-car-details {
justify-content: center;
font-size: large;
display: flex;
flex-direction: column;
}