-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (125 loc) · 3.74 KB
/
index.html
File metadata and controls
130 lines (125 loc) · 3.74 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS Slider</title>
<link rel="stylesheet" href="./css/variables.css" />
<link rel="stylesheet" href="./css/main.css" />
<link
rel="stylesheet"
media="(min-width: 1024px)"
href="./css/desktop.css"
/>
</head>
<body>
<main>
<header class="header">
<button class="configuration" id="open-modal">
<img
class="configuration__image"
src="./assets/images/gear.svg"
alt="Icone de engrenagem para configurações"
/>
</button>
</header>
<!-- MODAL CONTROLADORES -->
<section class="controller-modal">
<header class="controller-modal__header">
<h2 class="controller-modal__title">Controle de CSS</h2>
<button class="controller-modal__close" id="close-modal">
<img
class="controller-modal__close__image"
src="./assets/images/close.svg"
alt="Icone X para fechar modal"
/>
</button>
</header>
<div class="controller-modal__container">
<div class="controller-modal__item">
<label for="gap-size">Gap Size (px)</label>
<input
type="range"
value="24"
id="gap-size"
name="gap-size"
min="8"
max="64"
/>
</div>
<div class="controller-modal__item">
<label for="border-radius">Border Radius (px)</label
><input
type="range"
value="8"
id="border-radius"
name="border-radius"
min="0"
max="64"
/>
</div>
<div class="controller-modal__item">
<label for="text-size">Text Size (px)</label>
<input
type="range"
value="24"
id="text-size"
name="text-size"
min="12"
max="64"
/>
</div>
<div class="controller-modal__item">
<label for="title-size">Title Size (px)</label>
<input
type="range"
value="32"
id="title-size"
name="title-size"
min="24"
max="88"
/>
</div>
<div class="controller-modal__item">
<label for="image-width">Image Width (%)</label>
<input
type="range"
value="100"
id="image-width"
name="image-width"
min="50"
max="100"
/>
</div>
<div class="controller-modal__item">
<label for="card-size">Card Size (px)</label>
<input
type="range"
value="250"
id="card-size"
name="card-size"
min="150"
max="360"
/>
</div>
<div class="controller-modal__item">
<label for="gradient-direction">Gradient Direction (deg)</label
><input
type="range"
value="45"
id="gradient-direction"
name="gradient-direction"
min="0"
max="360"
/>
</div>
</div>
</section>
<!-- FIM MODAL CONTROLADORES -->
<h1 class="title">Pokémon Randomizer</h1>
<section class="pokemon-container"></section>
</main>
<script src="./scripts/app.js" type="module"></script>
</body>
</html>