-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
87 lines (84 loc) · 2.8 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="description" content="NFT Preview Card Component" />
<meta name="author" content="Melvin Aguilar" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link href="./output.css" rel="stylesheet" />
<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"
/>
<title>Frontend Mentor | NFT preview card component</title>
</head>
<body class="grid min-h-screen place-content-center bg-very-dark-blue">
<main>
<h1 class="sr-only">NFT preview card component</h1>
<div
class="m-4 flex max-w-[21.875rem] flex-col gap-3 rounded-2xl bg-very-dark-blue-card p-6 pb-[2.1875rem] shadow-lg"
>
<a
href="#"
class="eye-hover transition-default block overflow-hidden rounded-xl"
aria-label="Preview Equilibrium NFT"
>
<img
src="./images/image-equilibrium.jpg"
alt=""
width="302"
height="302"
/>
</a>
<h2>
<a
href="#"
class="transition-default mt-2 inline-block text-2xl font-semibold tracking-[-0.04em] text-white hover:text-cyan"
>
Equilibrium #3429
</a>
</h2>
<p class="text-lg text-soft-blue">
Our Equilibrium collection promotes balance and calm.
</p>
<div class="mb-2 mt-[0.5625rem] flex items-center justify-between">
<p class="icon-ethereum font-semibold tracking-[0.024em] text-cyan">
0.041
<abbr class="no-underline" title="Ethereum">ETH</abbr>
</p>
<p class="icon-clock tracking-[0.024em] text-soft-blue">
3 days left
</p>
</div>
<figure
class="flex items-center gap-[0.9375rem] border-t border-very-dark-blue-line pt-[1.0625rem] tracking-[0.012em]"
>
<img
src="./images/image-avatar.png"
alt="Jules Wyvern"
width="33"
height="33"
class="rounded-full border border-white"
/>
<figcaption>
<p class="text-soft-blue">
Creation of
<a href="#" class="transition-default text-white hover:text-cyan">
Jules Wyvern
</a>
</p>
</figcaption>
</figure>
</div>
</main>
</body>
</html>