This commit is contained in:
yohlo
2025-08-20 22:35:40 -05:00
commit f51c278cd3
169 changed files with 8173 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
public/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
public/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 832 B

BIN
public/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
public/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

17
public/site.webmanifest Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"display": "standalone"
}

BIN
public/static/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 747 KiB

31
public/styles.css Normal file
View File

@@ -0,0 +1,31 @@
* {
overscroll-behavior: none;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.app {
transition: transform 500ms cubic-bezier(0.32, 0.72, 0, 1),
border-radius 500ms cubic-bezier(0.32, 0.72, 0, 1);
transform: scale(1) translateY(0);
border-radius: 0;
will-change: transform;
}
.app.drawer-scaling,
[data-drawer-level].drawer-scaling {
transform: scale(0.94) translateY(-8px);
border-radius: 12px;
overflow: hidden;
}
[data-drawer-level="2"].drawer-scaling {
transform: scale(0.92) translateY(-6px);
}
[data-drawer-level="3"].drawer-scaling {
transform: scale(0.90) translateY(-4px);
}