blur clear line animation

This commit is contained in:
Adrien MALINGREY 2023-12-01 01:30:13 +01:00
parent a9e3557b56
commit 8940c1b79b

View File

@ -84,3 +84,14 @@ tr.matrix td:not(.mino) {
animation: locked-animation;
animation-duration: 0.2s;
}
@keyframes cleared-line-animation {
from {
background-color: rgb(206, 255, 255, 40%);
filter: saturate(50%) brightness(300%);
box-shadow: -200px 0 10px white, 200px 0 10px white;
}
to {
box-shadow: -200px 0 50px transparent, 200px 0 50px transparent;
}
}