-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
</head>
<body class="flex flex-col">
<section id="colecao"
class="right-[-360px] fixed top-0 bg-zinc-900 text-slate-200 h-screen w-[360px] z-50 duration-200 border-l border-zinc-400 p-5 flex flex-col justify-between">
<div id="cabecalho colecao"
class="flex justify-between m-4">
<p class="text-xl">Collection</p>
<button id="fechar-colecao">
<i class="fa-solid fa-circle-xmark"></i>
</button>
</div>
<section id="produtos-colecao"
class="overflow-y-auto flex flex-row flex-wrap gap-2"
>
</section>
</section>
<header class="flex bg-zinc-900 justify-between text-xl px-8 py-4 sticky items-center">
<!--src="./img/Tech-Deck-logo.jpg"-->
<img
class="h-24"
src="./img/td_logo.png"
alt="Logo Tech Deck">
<div class="text-slate-200">
<button id="abrir-colecao"
class=" mx-2">
<p>Collection</p>
<i class="fa-solid fa-box-archive" style="color: #ffffff;"></i>
</button>
</div>
</header>
<main>
<section id="container-produto"
class="flex flex-wrap p-10 justify-center gap-10"></section>
</main>
<script type="module" src="./main.js"></script>
</body>
</html>