-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
106 lines (87 loc) · 1.41 KB
/
index.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
100
101
102
103
104
105
106
* {
margin: 0;
padding: 0;
}
body{
background-color: black;
}
area:hover{
cursor: pointer;
}
#mapaContent{
position: absolute;
width: 100%;
height: 100%;
overflow-y: hidden;
overflow-x: hidden;
z-index: -1;
}
#mapaContent::-webkit-scrollbar {
display: none;
}
#mapaContent>img {
cursor: all-scroll;
}
#botaoZoomMais, #botaoZoomMenos, #botaoMudarMapa{
position: fixed;
top: 95%;
width: 30px;
height: 30px;
border-radius: 25px;
right: 75%;
font-size: 25px;
cursor: pointer;
}
#botaoZoomMais{
right: 72%;
}
#botaoMudarMapa{
right: 65%;
width: 60px;
height: 30px;
font-size: 22px;
}
#divLateral {
position: fixed;
width: 270px;
height: 80%;
margin-top: 5%;
background-color: #fff;
left: -270px;
}
p{
word-break: break-all;
}
#divlateral > div > p{
opacity: 0;
}
.mapBTN:hover{
cursor: pointer;
}
.notmapBTN:hover{
cursor: all-scroll;
z-index: 2;
}
.puxarNormal{
animation: puxar 1s;
}
.puxarInvertido{
animation: puxar 1s reverse;
}
.fixar{
left: 60px !important;
opacity: 1 !important;
}
.mostrarContent>{
opacity: 1;
}
.animarContent>*{
animation: mostrar 1s;
}
@keyframes puxar {
from{
left: -270px;
}to{
left: 60px;
}
}