LinkStack/littlelink/css/animate.css
JulianPrieber f5ffdc18b1 Revert "Merge branch 'main' of https://github.com/JulianPrieber/littlelink-custom"
This reverts commit 30ec6bea98e26f43018d2b17e84feeef2674673b, reversing
changes made to 69fc08668cae8ffd195b8c5dd80b71c8c94606aa.
2022-02-20 14:10:40 +01:00

25 lines
481 B
CSS
Vendored

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
* animation-delay: calc(var(--delay)/10);
* Copyright (c) 2022 Animate.css
*/
.button-entrance {
animation-name: zoomIn;
animation-duration: 1s;
animation-fill-mode: both;
animation-delay: calc(var(--delay)/10);
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}