2021-01-21 16:09:23 +01:00
|
|
|
.place {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
2025-07-26 20:42:58 +02:00
|
|
|
display: flex;
|
2021-01-21 16:09:23 +01:00
|
|
|
|
2025-07-26 20:42:58 +02:00
|
|
|
&__place_lines_wrapper {
|
|
|
|
|
width: 100%;
|
2021-01-21 16:09:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__line {
|
|
|
|
|
height: 10px;
|
|
|
|
|
margin: 10px;
|
|
|
|
|
animation: pulse 1s infinite ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__circle {
|
|
|
|
|
height: 4rem;
|
|
|
|
|
width: 5rem;
|
|
|
|
|
margin: 10px;
|
|
|
|
|
border-radius: 360px;
|
|
|
|
|
animation: pulse 1s infinite ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
|
0% {
|
2025-07-26 20:42:58 +02:00
|
|
|
background-color: rgba(165, 165, 165, 0.1);
|
2021-01-21 16:09:23 +01:00
|
|
|
}
|
|
|
|
|
50% {
|
2025-07-26 20:42:58 +02:00
|
|
|
background-color: rgba(165, 165, 165, 0.3);
|
2021-01-21 16:09:23 +01:00
|
|
|
}
|
|
|
|
|
100% {
|
2025-07-26 20:42:58 +02:00
|
|
|
background-color: rgba(165, 165, 165, 0.1);
|
2021-01-21 16:09:23 +01:00
|
|
|
}
|
|
|
|
|
}
|