File tree Expand file tree Collapse file tree 1 file changed +0
-43
lines changed
Expand file tree Collapse file tree 1 file changed +0
-43
lines changed Original file line number Diff line number Diff line change 1- /*!
2- * animate.css - https://animate.style/
3- * Version - 4.1.1
4- * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
5- * animation-delay: calc(var(--delay)/10);
6- * Copyright (c) 2022 Animate.css
7- */
8-
9- .button-entrance {
10- animation-name : zoomIn;
11- animation-duration : 1s ;
12- animation-fill-mode : both;
13- animation-delay : calc (var (--delay )/ 10 );
14- }
15-
16- @keyframes zoomIn {
17- from {
18- opacity : 0 ;
19- transform : scale3d (0.3 , 0.3 , 0.3 );
20- }
21-
22- 50% {
23- opacity : 1 ;
24- }
25- }
261
272/* Rotating entrances */
283.rotate {
4217 }
4318}
4419
45-
46- .fadein {
47- animation-name : fadein;
48- animation-duration : 3s ;
49- animation-fill-mode : both;
50- }
51-
52-
53- @keyframes fadein {
54- from {
55- opacity : 0 ;
56- }
57-
58- to {
59- opacity : 1 ;
60- }
61- }
62-
6320.logo-container {
6421 position : relative;
6522 text-align : center;
You can’t perform that action at this time.
0 commit comments