The file does not exist — all styles are in the <style> block and Tailwind CDN. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
57 lines
No EOL
1.8 KiB
HTML
57 lines
No EOL
1.8 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Build-A-Squad | Neo-Brutalist Staffing Tool</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;700;900&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Public Sans', sans-serif;
|
|
background-color: #F3F3F3;
|
|
}
|
|
.neo-brutal {
|
|
border: 4px solid black;
|
|
box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
|
|
}
|
|
.neo-brutal-small {
|
|
border: 3px solid black;
|
|
box-shadow: 4px 4px 0px 0px rgba(0,0,0,1);
|
|
}
|
|
.neo-brutal-interactive:hover {
|
|
transform: translate(-2px, -2px);
|
|
box-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
|
|
}
|
|
.neo-brutal-interactive:active {
|
|
transform: translate(2px, 2px);
|
|
box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
|
|
}
|
|
input, select, textarea {
|
|
border: 3px solid black !important;
|
|
}
|
|
input:focus, select:focus, textarea:focus {
|
|
outline: none;
|
|
box-shadow: 3px 3px 0px 0px #F5C518;
|
|
}
|
|
</style>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"lucide-react": "https://esm.sh/lucide-react@^0.564.0",
|
|
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
|
|
"react/": "https://esm.sh/react@^19.2.4/",
|
|
"react": "https://esm.sh/react@^19.2.4",
|
|
"@google/genai": "https://esm.sh/@google/genai@^1.41.0"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/index.tsx"></script>
|
|
</body>
|
|
</html> |