Files
hipctf/index.html
m0rph3us1987 1c756af238 initial commit
2026-01-07 13:27:11 +01:00

64 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hipCTF26</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700;800&display=swap" rel="stylesheet">
<style>
body {
font-family: 'JetBrains Mono', monospace;
background-color: #000000;
color: #ff0000;
}
.hxp-border {
border: 3px solid #ff0000;
}
.hxp-border-purple {
border: 2px solid #bf00ff;
}
.hxp-btn {
background: #ff0000;
color: #000;
font-weight: 800;
padding: 10px 20px;
transition: all 0.1s;
}
.hxp-btn:hover {
background: #000;
color: #ff0000;
box-shadow: 0 0 15px #ff0000;
}
.hxp-card {
background: #000;
border: 2px solid #333;
}
.hxp-card:hover {
border-color: #bf00ff;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #ff0000; }
</style>
<script type="importmap">
{
"imports": {
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"react-router-dom": "https://esm.sh/react-router-dom@^7.11.0",
"lucide-react": "https://esm.sh/lucide-react@^0.562.0",
"vite": "https://esm.sh/vite@^7.3.0",
"@vitejs/plugin-react": "https://esm.sh/@vitejs/plugin-react@^5.1.2"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>