-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 loc) · 1.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pixel-Store</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: "class",
}
</script>
<link rel="stylesheet" href="./style.css">
</head>
<body class="dark">
<!-- partial:index.partial.html -->
<main>
<div class="relative flex flex-col h-[100vh] items-center justify-center bg-white dark:bg-black transition-bg">
<div class="absolute inset-0 overflow-hidden">
<div class="jumbo absolute -inset-[10px] opacity-50"></div>
</div>
<h1
class="relative flex items-center text-5xl font-bold text-gray-800 dark:text-white dark:opacity-80 transition-colors">
Pixel
<span class="ml-1 rounded-xl bg-current p-2 text-[0.7em] leading-none">
<span class="text-white dark:text-black">store</span>
</span>
</h1>
<div class="mt-4">
<button
class="px-3 py-1 border border-stone-200 rounded-full drop-shadow-sm text-sm text-stone-800 dark:text-white bg-white/40 dark:bg-black/40 backdrop-blur-lg hover:border-stone-300 transition-colors dark:border-stone-500 dark:hover:border-stone-400"><a
href="html/Home.html">
Explore More...</a></button>
</div>
</div>
</main>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>