From 26aeb8f9a22f0306e52a82c786e67051db31ab1d Mon Sep 17 00:00:00 2001 From: adrien Date: Thu, 28 Aug 2025 02:15:48 +0200 Subject: [PATCH] white border --- css/minimal.css | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/css/minimal.css b/css/minimal.css index d69d720..137604d 100644 --- a/css/minimal.css +++ b/css/minimal.css @@ -5,7 +5,12 @@ .minoes-table { display: flex; flex-direction: column; - filter: drop-shadow(5px 8px 0 rgba(9, 9, 9, 22%)); + filter: + drop-shadow(-2px 0 0 white) + drop-shadow(2px 0 0 white) + drop-shadow(0 -2px 0 white) + drop-shadow(0 2px 0 white) + drop-shadow(5px 8px 0 rgba(9, 9, 9, 22%)); } .minoes-table tr { @@ -80,7 +85,8 @@ tr.matrix td:not(.mino) { } .locking.mino { - filter: saturate(50%) brightness(130%); + --background-color: white; + --box-shadow-color: #DDD; } .locked.mino { @@ -105,4 +111,14 @@ tr.matrix td:not(.mino) { to { background-color: transparent; } +} + +@keyframes trail-animation { + from { + background-color: #ceffff10; + filter: saturate(50%) brightness(110%); + } + to { + background-color: transparent; + } } \ No newline at end of file