white border

This commit is contained in:
2025-08-28 02:17:10 +02:00
parent 051fc223e9
commit 2f1ec2a6f7

View File

@@ -5,7 +5,12 @@
.minoes-table { .minoes-table {
display: flex; display: flex;
flex-direction: column; 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 { .minoes-table tr {
@@ -80,7 +85,8 @@ tr.matrix td:not(.mino) {
} }
.locking.mino { .locking.mino {
filter: saturate(50%) brightness(130%); --background-color: white;
--box-shadow-color: #DDD;
} }
.locked.mino { .locked.mino {
@@ -105,4 +111,14 @@ tr.matrix td:not(.mino) {
to { to {
background-color: transparent; background-color: transparent;
} }
}
@keyframes trail-animation {
from {
background-color: #ceffff10;
filter: saturate(50%) brightness(110%);
}
to {
background-color: transparent;
}
} }