File size: 712 Bytes
0ad74ed |
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 |
<span class="loader" />
<style>
.loader {
display: block;
position: relative;
animation: shadowPulse 2s linear infinite;
box-sizing: border-box;
margin: var(--spacing-xxl) 0 var(--spacing-lg) var(--spacing-xxl) !important;
box-shadow:
-24px 0 #fff,
24px 0 #fff;
border-radius: 50%;
background: #fff;
width: 16px;
height: 16px;
}
@keyframes shadowPulse {
33% {
box-shadow:
-24px 0 #ff3d00,
24px 0 #fff;
background: #fff;
}
66% {
box-shadow:
-24px 0 #fff,
24px 0 #fff;
background: #ff3d00;
}
100% {
box-shadow:
-24px 0 #fff,
24px 0 #ff3d00;
background: #fff;
}
}
.loader {
transform: scale(0.4) translateY(7px);
}
</style>
|