-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (89 loc) · 1.88 KB
/
style.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
body {
margin: 0;
padding: 0;
}
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
.marker {
background-image: url('Assets/camera.png');
background-size: cover;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
}
.mapboxgl-popup {
max-width: 200px;
}
.mapboxgl-popup-content {
text-align: center;
font-family: 'Open Sans', sans-serif;
}
/* Define styles for the popup container */
.custom-popup {
max-width: 200px;
padding: 10px;
background-color: #9dd4f4;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* Define styles for the popup content */
.custom-popup-content {
font-size: 16px;
color: #333;
}
/* Define styles for the close button */
.custom-popup-close-button {
cursor: pointer;
position: absolute;
top: 5px;
right: 5px;
font-size: 14px;
color: #666;
}
#marker {
/* background-image: url('Assets/camera.png'); */
background-size: cover;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
}
.mapboxgl-popup {
max-width: 200px;
}
#banner {
display: none;
background-color: #3498db;
color: #ecf0f1;
padding: 10px; /* Reduce padding */
text-align: center;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
font-family: 'Arial', sans-serif; /* Change to sans-serif font */
}
.banner-content {
font-size: 14px; /* Reduce font size */
margin-bottom: 5px; /* Reduce margin */
}
.banner-close {
cursor: pointer;
background-color: #2980b9;
color: #ecf0f1;
border: none;
padding: 6px 10px; /* Reduce padding */
font-size: 12px; /* Reduce font size */
border-radius: 4px;
transition: background-color 0.3s;
}
.banner-close:hover {
background-color: #1a6781;
}