1+ /*
2+ Animations
3+ */
4+
5+ .vue-animations .fade-in {
6+ opacity : 0 ;
7+ transition : 0.3s ease-in;
8+ }
9+
10+ .vue-animations .fade-from-left {
11+ opacity : 0 ;
12+ transform : translate (-30px , 0 );
13+ transition : 0.5s ease-out;
14+ }
15+
16+ .vue-animations .fade-from-right {
17+ opacity : 0 ;
18+ transform : translate (30px , 0 );
19+ transition : 0.5s ease-out;
20+ }
21+
22+ .vue-animations .size-fade-in {
23+ opacity : 0 ;
24+ transform : scale (0.8 , 0.8 );
25+ transition : 0.5s ease-out;
26+ }
27+
28+ .vue-animations .draw-to-right {
29+ width : 0 ;
30+ transition : 0.5s ease-in-out;
31+ }
32+
33+ /*
34+ Applied
35+ */
36+
37+ .vue-animations .applied .fade-in {
38+ opacity : 1 ;
39+ }
40+
41+ .vue-animations .applied .fade-from-left {
42+ opacity : 1 ;
43+ transform : none;
44+ }
45+
46+ .vue-animations .applied .fade-from-right {
47+ opacity : 1 ;
48+ transform : none;
49+ }
50+
51+ .vue-animations .applied .size-fade-in {
52+ opacity : 1 ;
53+ transform : none;
54+ }
55+
56+ .vue-animations .applied .draw-to-right {
57+ width : 100% ;
58+ }
59+
60+ @media only screen and (max-width : 800px ) {
61+ .vue-animations .fade-in ,
62+ .vue-animations .fade-from-left ,
63+ .vue-animations .fade-from-right {
64+ opacity : 0 ;
65+ transition : 0.3s ease-in;
66+ transform : unset;
67+ }
68+
69+ .vue-animations .applied .fade-in ,
70+ .vue-animations .applied .fade-from-left ,
71+ .vue-animations .applied .fade-from-right {
72+ opacity : 1 ;
73+ }
74+ }
75+
76+ /*
77+ Additions
78+ */
79+
80+ .delay-1 {
81+ transition-delay : 0.3s ;
82+ }
83+
84+ .delay-2 {
85+ transition-delay : 0.6s ;
86+ }
87+
88+ .delay-3 {
89+ transition-delay : 0.9s ;
90+ }
0 commit comments