mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-25 14:07:28 +00:00
29 lines
497 B
CSS
29 lines
497 B
CSS
.Directions {
|
|
display: block;
|
|
position: absolute;
|
|
width: 165px;
|
|
height: 165px;
|
|
bottom: -10px;
|
|
left: 50%;
|
|
margin-left: -82px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.DirectionsArrow {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-left: -27px;
|
|
margin-top: -27px;
|
|
width: 54px;
|
|
height: 54px;
|
|
background: url(./arrow-up.svg);
|
|
background-size: contain;
|
|
pointer-events: all;
|
|
}
|
|
|
|
.DirectionsArrow:hover {
|
|
cursor: pointer;
|
|
cursor: hand;
|
|
}
|