-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (72 loc) · 2.91 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
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="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" />
<link href="https://unpkg.com/nes.css@latest/css/nes.min.css" rel="stylesheet" />
<link rel="stylesheet" href="./assets/styles/default.css" />
<title>RetroNome</title>
</head>
<body>
<header class="header">
<h1>RetroNome</h1>
<!-- <p>Press a gem for a color theme</p> -->
<!-- <h3 class="themeTitle">Select your theme</h3> -->
<!-- <div class="themeContainer">
<button class="colorTheme" id="default">1</button>
<button class="colorTheme" id="sonic">2</button>
<button class="colorTheme" id="zelda">3</button>
</div> -->
</header>
<div class="container">
<main class="metronome">
<div class="bpm-display">
<h1 class="tempo"> 120 BPM</h1>
<p class="tempo-text"></p>
</div>
<div class="tempo-settings">
<button id="decreaseTempo" type="button" class="nes-btn tempo-btn">-</button>
<input type="range" min="20" max="260" step="1" class="slider" value="120" />
<button id="increaseTempo" type="button" class="nes-btn tempo-btn">+</button>
</div>
<div id="startStopcontainer" aria-label="button-holder">
<button type="button" class="nes-btn start-stop">START</button>
</div>
<div class="beats">
<button type="button" class="nes-btn subtract-beats stepper">-</button>
<p class="beat-count ">4</p>
<p class="beatsPerMeasureTxt">Beats per Measure</p>
<button type="button" class="nes-btn add-beats stepper">+</button>
</div>
</main>
<section class="time-blocks-area">
<div id="timeBlocksContainer" class="nes-container with-title time-blocks-container">
<div class="nes-container is-rounded time-block">1</div>
<div class="nes-container is-rounded time-block">2</div>
<div class="nes-container is-rounded time-block">3</div>
<div class="nes-container is-rounded time-block">4</div>
</div>
</div>
</section>
<!-- <section class="formArea">
<p id="date"></p>
<textarea
class="note-textarea"
placeholder="Enter your practice session info"
></textarea>
<div id="noteBtnContainer">
<button class="note" id="addNote">Add Note</button>
<button class="note" id="removeNote">Remove Note</button>
</div>
</section> -->
</div>
<!--
<footer id="footer">
<p id="joystick">🕹</p>
<p> App by Jeff: <a href="https://github.com/Reptartheman"> Click me!</a> </p>
<p id="joystick">🕹</p>
</footer> -->
<script src="./assets/scripts/app.js" type="module"></script>
</body>
</html>