141 lines
4.1 KiB
HTML
141 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Horizon OC Configurator</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
|
|
|
<style>
|
|
body {
|
|
background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
|
|
color: white;
|
|
font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.glass {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
backdrop-filter: blur(20px);
|
|
border-radius: 20px;
|
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.glass:hover {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
.button-glass {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(255, 255, 255, 0.25);
|
|
color: white;
|
|
padding: 0.8rem 1.6rem;
|
|
border-radius: 9999px;
|
|
font-weight: 600;
|
|
transition: all 0.3s;
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
margin: 0.25rem 0;
|
|
}
|
|
|
|
.button-glass:hover {
|
|
background: rgba(255, 255, 255, 0.25);
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
input[type="number"], input[type="file"] {
|
|
padding: 0.5rem 0.8rem;
|
|
border-radius: 12px;
|
|
border: 1px solid rgba(255, 255, 255, 0.25);
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: white;
|
|
font-weight: 500;
|
|
outline: none;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
input[type="number"]:focus, input[type="file"]:focus {
|
|
border-color: #b8f3ff;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
label {
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
section {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
footer {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-top: 1px solid rgba(255, 255, 255, 0.15);
|
|
padding: 1.5rem 0;
|
|
text-align: center;
|
|
color: #ccc;
|
|
font-size: 0.9rem;
|
|
margin-top: 4rem;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Navigation / Go Back -->
|
|
<nav class="flex justify-start p-6">
|
|
<a href="index.html" class="button-glass">← Go Back to Main Page</a>
|
|
</nav>
|
|
|
|
<!-- Configurator -->
|
|
<section id="config" class="max-w-4xl mx-auto px-6 py-16 glass mt-6" data-aos="fade-up">
|
|
<h2 class="text-3xl font-bold mb-4 text-center">Configurator</h2>
|
|
<p class="text-gray-400 text-center mb-8">Configure frequencies and voltages to suit your hardware and preferences.</p>
|
|
|
|
<form class="space-y-6 text-center">
|
|
<!-- Unit selection buttons -->
|
|
<div class="flex justify-center gap-2">
|
|
<button type="button" class="button-glass">All</button>
|
|
<button type="button" class="button-glass">Erista</button>
|
|
<button type="button" class="button-glass">Mariko</button>
|
|
</div>
|
|
|
|
<!-- File upload -->
|
|
<div class="flex flex-col items-center">
|
|
<input type="file" id="file">
|
|
<p class="text-sm text-gray-400 mt-2">Upload loader.kip here</p>
|
|
</div>
|
|
|
|
<!-- Example numeric inputs -->
|
|
<div class="flex flex-wrap justify-center gap-4 mt-4">
|
|
<div>
|
|
<label for="commonEmcMemVolt">EMC Voltage:</label>
|
|
<input type="number" id="commonEmcMemVolt" min="0" max="1250000" step="12500">
|
|
</div>
|
|
<div>
|
|
<label for="commonCpuVolt">CPU Voltage:</label>
|
|
<input type="number" id="commonCpuVolt" min="0" max="1250000" step="12500">
|
|
</div>
|
|
<div>
|
|
<label for="commonGpuVolt">GPU Voltage:</label>
|
|
<input type="number" id="commonGpuVolt" min="0" max="1250000" step="12500">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer>
|
|
Built with ❤️. All trademarks and logos are the property of their respective owners.
|
|
</footer>
|
|
|
|
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
|
<script>AOS.init({ once: true, duration: 700 });</script>
|
|
<script src="configurator.js"></script>
|
|
</body>
|
|
</html>
|