File size: 1,145 Bytes
1ecc339 |
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 |
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
path {
stroke: white;
fill:white;
transition: fill .4s ease;
cursor: pointer;
}
#car-map {
position: absolute;
top: 0;
left: 0;
width: 100%;
transform-origin: 50% 35%;
}
#details-box {
padding: 0.5rem;
border-radius: 8px;
font-size: 18px;
position: fixed;
color: white;
font-family: "Source Sans Pro";
background-color: black;
width: fit-content;
transform: translateX(-50%);
transition: opacity .4s ease;
z-index: 1;
display: none;
}
#view-assist {
position: absolute;
height: 100%;
width: 100%;
}
#view-assist #front {
font-family: "Source Sans Pro";
position: absolute;
top: 20px;
right: 25px;
margin: 0;
}
#view-assist #back {
font-family: "Source Sans Pro";
position: absolute;
bottom: 20px;
right: 25px;
margin: 8px 0;
}
#view-assist > #arrow {
position: absolute;
right: 18px;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50%;
object-fit: cover;
transform-origin: 50% 0%;
} |