25 lines
317 B
Stylus
25 lines
317 B
Stylus
|
.animated {
|
||
|
animation-fill-mode: both;
|
||
|
animation-duration: 1s;
|
||
|
}
|
||
|
|
||
|
.animated.hinge {
|
||
|
animation-duration: 1s;
|
||
|
}
|
||
|
|
||
|
@keyframes fade-in-down {
|
||
|
0% {
|
||
|
opacity: 0;
|
||
|
transform: translateY(-20px);
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
opacity: 1;
|
||
|
transform: translateY(0);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.fade-in-down {
|
||
|
animation-name: fade-in-down;
|
||
|
}
|