-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (42 loc) · 1.95 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/styles/index.css">
<link rel="shortcut icon" href="assets/media/button.png" type="image/x-icon">
<title>The Button</title>
</head>
<body id="body">
<h1 class="max">Max </h1>
<h3 class="resets">Resets </h3>
<div class="all">
<button class="button">
<span class="number">0</span>
</button>
<div class="bg1"></div>
<div class="bg2"></div>
</div>
<button class="mode"></button>
<button class="settings"></button>
<div class="menu closed">
<div id="itens" class="light-itens">
<div id="label" class="light-label">
Button Color
<div id="inputs" class="light-inputs">
<input type="radio" name="color" id="red" class="color">Red
<input type="radio" name="color" id="green" class="color">Green
<input type="radio" name="color" id="brown" class="color">Brown
<input type="radio" name="color" id="purple" class="color">Purple
</div>
</div>
<span class="back" class="light-back">Back</span>
</div>
</div>
<p id="credits">Remake feito por Eytor Lima | Créditos a Elendow, desenvolvedor do jogo original - <strong><a href="https://store.steampowered.com/app/1999740/THE_BUTTON_by_Elendow/" target="_blank" rel="license" id="link">The Button</a></strong>.</p>
<script src="assets/scripts/index.js"></script>
</body>
</html>