mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-25 14:07:28 +00:00
37 lines
483 B
CSS
37 lines
483 B
CSS
.SequenceContainer {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 20px;
|
|
transform: translate(-50%, 0);
|
|
}
|
|
|
|
.SequenceStep,
|
|
.SequencePlay {
|
|
cursor: pointer;
|
|
cursor: hand;
|
|
}
|
|
|
|
.SequenceStep {
|
|
background: lightgray;
|
|
}
|
|
|
|
.SequenceStep:hover {
|
|
background: darkgray;
|
|
}
|
|
|
|
.SequenceStepDisabled {
|
|
background: dimgray;
|
|
}
|
|
|
|
.SequencePlay {
|
|
background: lightgray;
|
|
}
|
|
|
|
.SequencePlay:hover {
|
|
background: darkgray;
|
|
}
|
|
|
|
.SequencePlayDisabled {
|
|
background: dimgray;
|
|
}
|