-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.html
55 lines (46 loc) · 1.99 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<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>Settings · Mastermind</title>
<link rel="stylesheet" href="../css/styles.css">
<link rel="stylesheet" href="../css/settings.css">
<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=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;400&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="../index.html">
<h1>Mastermind</h1>
</a>
</header>
<main>
<!-- choose levels -->
<section class="level-section" id="level-section">
<h3>Niveles</h3>
<div class="level-buttons-container">
<button class="level-button mm-button" id="level-easy">Fácil</button>
<button class="level-button mm-button" id="level-hard">Difícil</button>
<button class="level-button mm-button" id="level-tryhard">Tryhard</button>
</div>
<h2 class="new-game-title"><span class="comment">new</span> Game(<span class="string username-span"></span>)</h2>
</section>
<!-- choose colors -->
<section id="picker-section" class="picker-section">
<p>Colores</p>
<div id="pickers-list" class="pickers-list">
<!-- Aquí se renderizan los pickers según en nivel de dificultad -->
</div>
<button id="play-button" class="mm-button" type="button">
<span class="sea">jugar<span>()</span></span>
</button>
<h2 class="new-game-title"><span class="comment">new</span> Game(<span class="string username-span"></span>, <span class="string" id="difficulty-span"></span>)</h2>
</section>
</main>
<script type="module" src="../js/settings.js"></script>
</body>
</html>