mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-02-18 13:00:49 +01:00
25 lines
481 B
CSS
25 lines
481 B
CSS
|
/*!
|
||
|
* 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;
|
||
|
}
|
||
|
}
|