add: collapsing and deletion animation

Added collapsable cards and animation for deletion and card footer
This commit is contained in:
webfussel 2025-02-24 21:38:45 +01:00
parent c99c243dfc
commit 7c46be6227
6 changed files with 121 additions and 29 deletions

View file

@ -14,7 +14,9 @@
--color-main-light: var(--color-blue-light);
--color-main-dark: var(--color-blue-dark);
--box-shadow-upper: 0 -3px 6px rgba(0,0,0,0.16), 0 -3px 6px rgba(0,0,0,0.23);
--box-shadow-z2: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
--box-shadow-inset: inset 0 3px 6px rgba(0,0,0,0.16), inset 0 3px 6px rgba(0,0,0,0.23);
}
* {
@ -52,6 +54,11 @@ body {
flex-direction: column;
}
.flex-row {
display: flex;
flex-direction: row;
}
.text-white {
color: var(--color-white);
}