Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blockscout/apps/explorer_web/assets/css/components/_animations.scss

33 lines
448 B

@keyframes fade-in {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fade-up {
0% {
height: 0;
opacity: 0;
}
25% {
opacity: 0;
transform: translateY(10px);
}
50% {
height: 5em;
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fade-in 1s ease-out forwards;
}
.fade-up {
transition: all .9s ease-out;
animation: fade-up .8s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}