-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (56 loc) · 1.96 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Magazine Hashtag</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="bg-stone-200 flex-col">
<section
id="carrinho"
class="fixed top-0 right-[-360px] bg-slate-950 h-screen w-[360px] text-slate-200 z-50 duration-500 border-l border-slate-200 p-5 flex flex-col justify-between"
>
<div id="cabecalho-carrinho" class="flex justify-between m-4">
<p>Meu carrinho</p>
<button id="fechar-carrinho">
<i class="fa-solid fa-circle-xmark"></i>
</button>
</div>
<div id="produtos-carrinho">
<!-- aqui será inserido carrinho de forma dinamica -->
</div>
<p id="preco-total">$200</p>
<button class="bg-slate-200 text-slate-900 p-1">Finalizar Compra</button>
</section>
<header
class="flex text-xl bg-slate-950 shadow-slate-400 shadow-xl px-8 py-2 justify-between sticky top-0 z-10"
>
<img
class="h-16"
src="./assets/logo/hashtag.svg"
alt="Logo do magazine hashtag"
/>
<div class="text-slate-200 flex gap-2 items-end mx-2">
<div id="abrir-carrinho" class="mx-2">
<i class="fa-solid fa-cart-shopping cursor-pointer"></i>
<button class="mr-2"><i class="fa-solid fa-user"></i></button>
</div>
</div>
</header>
<main>
<section
id="container-produto"
class="flex flex-wrap justify-center p-10 gap-10"
></section>
</main>
<script type="module" src="main.js"></script>
</body>
</html>