Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
/* Smoke Ring Styles */
.
/* Animation for the smoke ring */
@keyframes smoke-ring-animation {
0% {
transform: translate(-50%, -50%) scale(0);
opacity: 1;
}
50% {
transform: translate(-50%, -50%) scale(1);
opacity: 0.5;
}
100% {
transform: translate(-50%, -50%) scale(1.5);
opacity: 0;
}
}