-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (50 loc) · 990 Bytes
/
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
html, body {
height: 100%;
width: 100%;
}
#map {
width: 100%;
height: 100vh;
}
.message-box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-color: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
border-radius: 10px;
z-index: 1000; /* Asegura que esté por encima del mapa */
max-width: 90%;
}
button {
background-color: #4CAF50; /* Verde */
color: white;
padding: 10px 20px;
margin-top: 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #45a049;
}
.good {
color: green;
}
.bad {
color: red;
}