This commit is contained in:
Gregory Wells
2026-03-24 15:34:03 -04:00
commit 31ad22ad38
21 changed files with 1237 additions and 0 deletions

13
static/card.css Normal file
View File

@@ -0,0 +1,13 @@
.card {
background: rgba(
255,
255,
255,
0.8
); /* Semi-transparent white for light theme */
border: 1px solid var(--border-subtle);
border-radius: 12px;
padding: 24px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
transition: transform 0.2s ease;
}