mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-18 13:56:53 +00:00
68 lines
1.1 KiB
CSS
68 lines
1.1 KiB
CSS
.NavigationComponent {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 5;
|
|
}
|
|
|
|
.Direction {
|
|
color: white;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
position: absolute;
|
|
margin: 0.1rem;
|
|
text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
|
|
background: url(./arrow-up-white.svg);
|
|
background-size: contain;
|
|
width: 1.3rem;
|
|
height: 1.3rem;
|
|
display: block;
|
|
}
|
|
|
|
.DirectionHidden {
|
|
display: none;
|
|
}
|
|
|
|
.DirectionForward {
|
|
top: 0;
|
|
left: 50%;
|
|
transform: translate(-50%, 0);
|
|
}
|
|
|
|
.DirectionBackward {
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translate(-50%, 0) rotate(180deg);
|
|
}
|
|
|
|
.DirectionLeft {
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translate(0, -50%) rotate(-90deg);
|
|
}
|
|
|
|
.DirectionRight {
|
|
right: 0;
|
|
top: 50%;
|
|
transform: translate(0, -50%) rotate(90deg);
|
|
}
|
|
|
|
.DirectionTurnleft {
|
|
left: 0;
|
|
top: 0;
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
.DirectionTurnright {
|
|
right: 0;
|
|
top: 0;
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.DirectionTurnaround {
|
|
left: 0;
|
|
bottom: 0;
|
|
transform: rotate(-135deg);
|
|
}
|