PHhTTPS's picture
<!DOCTYPE html>
94e6960 verified
raw
history blame
1.9 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Smashy Counter Smasher</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<link rel="stylesheet" href="style.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
500: '#6b7280', // gray-500 as fallback
},
secondary: {
500: '#9ca3af', // gray-400 as fallback
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-white h-screen flex flex-col">
<div class="container mx-auto flex-grow flex flex-col">
<header class="py-4 text-center">
<h1 class="text-4xl font-bold">Smashy Counter</h1>
<div id="counter" class="text-6xl font-bold my-8">0</div>
</header>
<main class="flex-grow flex items-center justify-center">
<button id="smashButton" class="w-4/5 h-2/5 bg-gray-700 hover:bg-gray-600 active:bg-gray-800 rounded-2xl flex flex-col items-center justify-center transition-all duration-200 transform hover:scale-105 active:scale-95 shadow-2xl border-2 border-gray-600">
<i data-feather="arrow-down" class="w-32 h-32 text-gray-400"></i>
<span class="text-5xl font-bold mt-4 text-gray-300">SMASH (-1)</span>
</button>
</main>
</div>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>