Farmbot-Web-App/frontend/css/animations.scss

85 lines
1.1 KiB
SCSS
Raw Normal View History

2017-06-29 12:54:02 -06:00
@keyframes rotate {
2017-07-03 14:59:36 -06:00
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes pulse-and-rotate {
0% {
transform: scale(1.2);
stroke-dashoffset: 0;
2017-07-03 14:59:36 -06:00
}
50% {
transform: scale(1);
2017-07-03 14:59:36 -06:00
}
100% {
transform: scale(1.2);
stroke-dashoffset: -200;
2017-09-05 18:49:43 -06:00
}
}
2017-09-05 19:40:09 -06:00
@keyframes plant-selection-pop {
2017-09-05 18:49:43 -06:00
0% {
transform: rotate(270deg) scale(0.2);
2017-09-05 19:40:09 -06:00
fill-opacity: 0;
stroke-opacity: 0;
2017-09-05 18:49:43 -06:00
}
100% {
transform: rotate(360deg) scale(1.2);
2018-10-25 18:02:54 -06:00
fill-opacity: 0.25;
stroke-opacity: 0.7;
2017-07-03 14:59:36 -06:00
}
2017-07-03 15:05:29 -06:00
}
@keyframes plant-growth {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
2017-09-12 07:48:09 -06:00
@keyframes soil-poof {
0% {
transform: scale(0);
fill-opacity: 0.5;
}
100% {
transform: scale(2.5);
fill-opacity: 0;
}
}
2017-09-05 19:40:09 -06:00
@keyframes spread-pop {
0% {
transform: scale(0.9);
fill-opacity: 0;
}
100% {
transform: scale(1);
2017-09-12 06:53:36 -06:00
fill-opacity: 1;
2017-09-05 19:40:09 -06:00
}
}
2017-07-03 15:05:29 -06:00
@keyframes slide-up {
0% {
transform: translateY(0px);
}
100% {
transform: translateY(-3px);
}
2017-07-07 10:50:52 -06:00
}
@keyframes flash {
0% {
text-shadow: white 0px 0px 10px;
}
100% {
text-shadow: none;
}
2017-09-05 18:49:43 -06:00
}