Upgrade to .NET 10 and finalize foundation scaffold
This commit is contained in:
1
wwwroot/app.js
Normal file
1
wwwroot/app.js
Normal file
@@ -0,0 +1 @@
|
||||
console.log("CoopGameChooser client placeholder");
|
||||
16
wwwroot/index.html
Normal file
16
wwwroot/index.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>CoopGameChooser</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<main class="container">
|
||||
<h1>CoopGameChooser</h1>
|
||||
<p>MVP is on the way. API and UI will land here.</p>
|
||||
</main>
|
||||
<script src="app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
20
wwwroot/styles.css
Normal file
20
wwwroot/styles.css
Normal file
@@ -0,0 +1,20 @@
|
||||
:root {
|
||||
font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
|
||||
background: #0f172a;
|
||||
color: #e2e8f0;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 720px;
|
||||
margin: 10vh auto;
|
||||
padding: 24px;
|
||||
background: rgba(15, 23, 42, 0.7);
|
||||
border-radius: 12px;
|
||||
border: 1px solid #1e293b;
|
||||
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-top: 0;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
Reference in New Issue
Block a user