-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
86 lines (85 loc) · 2.84 KB
/
details.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rick & Morty - Detalhes</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body class="details-body">
<header>
<nav class="navbar">
<div class="container-fluid">
<a
class="navbar-brand text-light d-flex align-baseline gap-2"
href="index.html"
>
<img
src="./assets/RICK_MORTY_ICON-01.svg"
alt="Rick and Morty Icon"
style="filter: invert()"
width="30"
height="30"
/>Voltar
</a>
</div>
</nav>
</header>
<main class="container mt-0">
<h1 id="search-title" class="text-center title fw-bolder display-4">
<!-- Inserido com JS -->
</h1>
<div
id="search-results-carousel"
class="carousel carousel-dark slide m-auto"
>
<div class="carousel-indicators" id="carousel-indicators">
<!-- Inserido com JS -->
</div>
<div class="carousel-inner text-border" id="carousel-content">
<!-- Inserido com JS -->
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#search-results-carousel"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Anterior</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#search-results-carousel"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Próximo</span>
</button>
</div>
<div
aria-live="polite"
aria-atomic="true"
class="position-fixed"
id="container-toast"
style="top: 24px; right: 32px"
></div>
</main>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="./js/integrations.js"></script>
<script src="./js/utils.js"></script>
<script src="./js/details.js"></script>
</body>
</html>