From 8940c1b79bec88775552c1c5da0bff5d6171e916 Mon Sep 17 00:00:00 2001 From: adrien Date: Fri, 1 Dec 2023 01:30:13 +0100 Subject: [PATCH] blur clear line animation --- css/pop.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/css/pop.css b/css/pop.css index c2e4311..cca031a 100644 --- a/css/pop.css +++ b/css/pop.css @@ -83,4 +83,15 @@ tr.matrix td:not(.mino) { .locked.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; + } } \ No newline at end of file