mirror of
https://github.com/penpot/penpot.git
synced 2026-04-25 11:18:36 +00:00
43 lines
568 B
SCSS
43 lines
568 B
SCSS
/*!
|
|
* animate.css -http://daneden.me/animate
|
|
* Version - 3.5.1
|
|
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
|
*
|
|
* Copyright (c) 2016 Daniel Eden
|
|
*/
|
|
|
|
.animated {
|
|
animation-duration: 1s;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.fade-in {
|
|
animation-name: fade-in;
|
|
}
|
|
|
|
@keyframes fade-in-down {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translate3d(0, -100%, 0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.fade-in-down {
|
|
animation-name: fade-in-down;
|
|
}
|