forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.scss
145 lines (116 loc) · 2.43 KB
/
main.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@import "scss/mixin";
@import "scss/variable";
@import "scss/_fading-entrances/_fadeIn.scss";
@import "scss/_fading-entrances/_fadeInDown.scss";
@import "scss/_fading-entrances/_fadeInLeft.scss";
@import "scss/_fading-entrances/_fadeInRight.scss";
@import "scss/_fading-entrances/_fadeInUp.scss";
@import "scss/_fading-exits/_fadeOut.scss";
@import "scss/_fading-exits/_fadeOutDown.scss";
@import "scss/_fading-exits/_fadeOutLeft.scss";
@import "scss/_fading-exits/_fadeOutRight.scss";
@import "scss/_fading-exits/_fadeOutUp.scss";
@import "scss/_sliding-exits/sliding-exits.scss";
@import "scss/_sliding-entrances/sliding-entrances.scss";
@import "scss/_zooming-entrances/_zoomIn.scss";
@import "scss/_zooming-exits/_zoomOut.scss";
@import "scss/_expand-entrances/_expandInDown.scss";
@import "scss/_expand-entrances/_expandInUp.scss";
@import "scss/_expand-entrances/_withFade.scss";
@import "scss/_expand-exits/_expandOutUp.scss";
@import "scss/_expand-exits/_expandOutDown.scss";
@import "scss/_expand-exits/_withFade.scss";
@import "scss/_attention-seekers/_pulse.scss";
.fadeIn {
@include fadeIn();
}
.fadeInDown {
@include fadeInDown();
}
.fadeInLeft {
@include fadeInLeft();
}
.fadeInRight {
@include fadeInRight();
}
.fadeInUp {
@include fadeInUp();
}
.fadeOut {
@include fadeOut();
}
.fadeOutDown {
@include fadeOutDown();
}
.fadeOutLeft {
@include fadeOutLeft();
}
.fadeOutRight {
@include fadeOutRight();
}
.fadeOutUp {
@include fadeOutUp();
}
.slideInUp {
@include slideInUp();
}
.slideInDown {
@include slideInDown();
}
.slideInLeft {
@include slideInLeft();
}
.slideInRight {
@include slideInRight();
}
.slideOutUp {
@include slideOutUp();
}
.slideOutRight {
@include slideOutRight();
}
.slideOutLeft {
@include slideOutLeft();
}
.slideOutDown {
@include slideOutDown();
}
.zoomIn {
@include zoomIn();
}
.zoomOut {
@include zoomOut();
}
.expandInDown {
@include expandInDown();
}
.expandOutUp {
@include expandOutUp();
}
.expandInUp {
@include expandInUp();
}
.expandOutDown {
@include expandOutDown();
}
.pulse {
@include pulse();
}
.expand-enter {
overflow: hidden;
}
.expand-enter-active {
transition: all .3s ease-out;
& > * {
@include expandInWithFade();
}
}
.expand-leave {
overflow: hidden;
}
.expand-leave-active {
transition: all .2s ease-out;
& > * {
@include expandOutWithFade();
}
}