Spaces:
Running
Running
File size: 747 Bytes
794cf6c eb1a39a 794cf6c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<title>VibeGame</title>
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(135deg, #0b0a09 0%, #0f0e0c 100%);
color: #ffffff;
overflow: hidden;
min-height: 100vh;
}
#app {
opacity: 0;
animation: fadeIn 0.3s ease-out 0.1s forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
|