0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-25 07:58:49 -05:00
penpot/frontend/resources/styles/common/dependencies/animations.scss

102 lines
1.4 KiB
SCSS
Raw Normal View History

2016-03-01 20:39:13 +02:00
/*!
* 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
*/
2015-06-18 19:35:50 +02:00
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
2015-06-18 19:35:50 +02:00
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
2015-06-18 19:35:50 +02:00
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
2015-06-18 19:35:50 +02:00
}
@-webkit-keyframes fadeInDown {
2015-06-18 19:35:50 +02:00
0% {
opacity: 0;
2015-06-18 19:35:50 +02:00
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
2015-06-18 19:35:50 +02:00
}
}
@keyframes fadeInDown {
2015-06-18 19:35:50 +02:00
0% {
opacity: 0;
2015-06-18 19:35:50 +02:00
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
2015-06-18 19:35:50 +02:00
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
2015-06-18 19:35:50 +02:00
}
2016-04-08 10:48:41 +02:00
@keyframes loaderColor {
0% {
fill: #513b56;
2016-04-08 10:48:41 +02:00
}
2016-04-08 10:48:41 +02:00
33% {
fill: #348aa7;
2016-04-08 10:48:41 +02:00
}
2016-04-08 10:48:41 +02:00
66% {
fill: #5dd39e;
2016-04-08 10:48:41 +02:00
}
2016-04-08 10:48:41 +02:00
100% {
fill: #513b56;
2016-04-08 10:48:41 +02:00
}
}
2016-04-09 17:43:44 +02:00
//pencil loader animation
@keyframes linePencil {
0% {
transform: translateY(0);
}
2016-04-09 17:43:44 +02:00
100% {
transform: translateY(-150px);
}
}