-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (58 loc) · 2.31 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/images/favicon-32x32.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css" />
<title>NFT Card</title>
</head>
<body>
<main class="font-outfit bg-dark-blue-main-bg min-h-screen grid place-items-center">
<section class="bg-dark-blue-card-bg p-5 mx-5 rounded-xl max-w-xs shadow-2xl">
<a href="#" class="group block relative rounded-md overflow-hidden">
<div class="invisible group-hover:visible absolute inset-0 bg-cyan/50">
<img
src="/images/icon-view.svg"
class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2"
alt="eye icon"
/>
</div>
<img src="/images/image-equilibrium.jpg" alt="equilibrium" />
</a>
<h1>
<a href="#" class="block text-white my-4 font-semibold text-lg hover:text-cyan"
>Equilibrium #3429</a
>
</h1>
<p class="text-soft-blue font-light">
Our Equilibrium collection promotes balance and calm.
</p>
<div class="flex justify-between items-center mt-4">
<div class="flex text-cyan space-x-2">
<img src="/images/icon-ethereum.svg" alt="ethereum icon" />
<p>0.041 ETH</p>
</div>
<div class="flex items-center text-soft-blue space-x-2 whitespace-nowrap">
<img src="/images/icon-clock.svg" alt="clock icon" />
<p>3 days left</p>
</div>
</div>
<hr class="border-dark-blue-line mt-6" />
<div class="flex items-center space-x-2 mt-4">
<img src="/images/image-avatar.png" alt="avatar" class="w-8 h-8" />
<p class="text-white">
<span class="text-soft-blue">Creation of</span>
<a href="#" class="hover:text-cyan">Jules Wyvern</a>
</p>
</div>
</section>
</main>
</body>
</html>