Vibecode central

This commit is contained in:
Alexander Harding
2026-07-31 19:50:55 -04:00
parent 1362f28585
commit a3ea76fdff
67 changed files with 6287 additions and 202 deletions
+23 -2
View File
@@ -18,8 +18,7 @@ html,
body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
min-height: 100%;
background: var(--color-bg);
font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
color: var(--color-ink);
@@ -50,4 +49,26 @@ canvas {
opacity: 1;
transform: scaleX(1) scaleY(1) translateY(-50%);
}
}
@keyframes cardIn {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes cardOut {
from {
opacity: 1;
transform: translateX(0);
}
to {
opacity: 0;
transform: translateX(20px);
}
}