16 lines
200 B
CSS
16 lines
200 B
CSS
@keyframes fast-pulse {
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
50% {
|
|
opacity: 0.6;
|
|
transform: scale(1.15);
|
|
}
|
|
}
|
|
|
|
.fast-pulse {
|
|
animation: fast-pulse 0.5s infinite;
|
|
}
|