2025-12-28 15:28:26 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>SplatNet | Stages</title>
|
|
|
|
|
<style>
|
|
|
|
|
html, body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2026-01-16 21:15:35 +01:00
|
|
|
background-image: url("/assets/stage.png");
|
2025-12-28 15:28:26 -05:00
|
|
|
background-repeat: repeat;
|
|
|
|
|
background-size: 800px 800px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-30 04:25:58 +01:00
|
|
|
/* HEADER */
|
2025-12-28 15:28:26 -05:00
|
|
|
.header {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 150px;
|
|
|
|
|
background-color: black;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
|
|
clip-path: polygon(
|
|
|
|
|
0% 0%, 100% 0%, 100% 80%,
|
|
|
|
|
90% 85%, 80% 75%, 70% 85%,
|
|
|
|
|
60% 75%, 50% 85%, 40% 75%,
|
|
|
|
|
30% 85%, 20% 75%, 10% 85%,
|
|
|
|
|
0% 80%
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-30 04:25:58 +01:00
|
|
|
.hamburger {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 40px;
|
|
|
|
|
top: 40%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
height: 50px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
z-index: 3;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-28 15:28:26 -05:00
|
|
|
.logo {
|
|
|
|
|
max-height: 120px;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
2025-12-30 04:25:58 +01:00
|
|
|
|
|
|
|
|
/* MAIN CONTENT */
|
|
|
|
|
.content {
|
|
|
|
|
display: flex;
|
2026-01-16 02:30:44 +01:00
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2025-12-30 04:25:58 +01:00
|
|
|
padding-top: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stage-info {
|
|
|
|
|
width: 65%;
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
height: auto;
|
2026-01-16 02:30:44 +01:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-16 21:15:35 +01:00
|
|
|
.stages-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr; /* ONE COLUMN */
|
|
|
|
|
row-gap: 30px;
|
|
|
|
|
justify-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stages-container > * {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-28 15:28:26 -05:00
|
|
|
</style>
|
|
|
|
|
</head>
|
2026-01-16 02:30:44 +01:00
|
|
|
|
2025-12-28 15:28:26 -05:00
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<div class="header">
|
2025-12-30 22:52:11 -05:00
|
|
|
<img src="../../assets/SplatNetLogo.png" class="logo" alt="SplatNet Logo">
|
2025-12-28 15:28:26 -05:00
|
|
|
</div>
|
|
|
|
|
|
2025-12-30 04:25:58 +01:00
|
|
|
<div class="content">
|
2025-12-30 22:52:11 -05:00
|
|
|
<img src="../../assets/stageinfo.png" class="stage-info" alt="Stage Info">
|
2026-01-16 02:30:44 +01:00
|
|
|
|
|
|
|
|
<div class="stages-container" id="stages-container"></div>
|
2025-12-30 04:25:58 +01:00
|
|
|
</div>
|
|
|
|
|
|
2026-01-16 02:30:44 +01:00
|
|
|
<script src="stages.js"></script>
|
|
|
|
|
|
2025-12-28 15:28:26 -05:00
|
|
|
</body>
|
|
|
|
|
</html>
|