forked from seth/ipv4.army
19 lines
No EOL
186 B
CSS
19 lines
No EOL
186 B
CSS
:root {
|
|
--bpm: 0;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
|
|
0%,
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
50% {
|
|
transform: scale(1.1);
|
|
}
|
|
}
|
|
|
|
.heart {
|
|
animation: pulse calc(60s / var(--bpm)) infinite ease;
|
|
} |