File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -531,3 +531,43 @@ hr {
531
531
transform : translateY (-15px );
532
532
}
533
533
}
534
+
535
+ # cat_1 {
536
+ transform : translate (0 , 80px );
537
+ opacity : 0 ;
538
+ animation : fade_in_up 0.4s forwards;
539
+ animation-delay : 0.3s ;
540
+ }
541
+
542
+ # cat_2 {
543
+ transform : translate (0 , 80px );
544
+ opacity : 0 ;
545
+ animation : fade_in_up 0.4s forwards;
546
+ animation-delay : 0.4s ;
547
+ }
548
+
549
+ # cat_3 {
550
+ transform : translate (0 , 80px );
551
+ opacity : 0 ;
552
+ animation : fade_in_up 0.4s forwards;
553
+ animation-delay : 0.5s ;
554
+ }
555
+
556
+ # cat_4 {
557
+ transform : translate (0 , 80px );
558
+ opacity : 0 ;
559
+ animation : fade_in_up 0.4s forwards;
560
+ animation-delay : 0.6s ;
561
+ }
562
+
563
+ @keyframes fade_in_up {
564
+ from {
565
+ opacity : 0 ;
566
+ transform : translate (0 , 80px );
567
+ }
568
+ to {
569
+ opacity : 1 ;
570
+ transform : translate (0px );
571
+ }
572
+ }
573
+
You can’t perform that action at this time.
0 commit comments