This commit is contained in:
karpathy
2025-11-22 14:27:53 -08:00
commit eb0eb26f4c
39 changed files with 6660 additions and 0 deletions

15
frontend/src/App.css Normal file
View File

@@ -0,0 +1,15 @@
* {
box-sizing: border-box;
}
.app {
display: flex;
height: 100vh;
width: 100vw;
overflow: hidden;
background: #ffffff;
color: #333;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
}