-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (61 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Knight</title>
<style>
main {
width: fit-content;
height: fit-content;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
#light-panel {
display: flex;
width: fit-content;
height: fit-content;
margin: auto;
}
#btn-panel {
text-align: center;
margin: 20px 0px;
}
.light {
width: 100px;
aspect-ratio: 2/1;
border: 2px solid black;
}
.light_on {
background: red;
box-shadow: 0px 0px 20px red;
}
.light_on2 {
background: hotpink;
box-shadow: 0px 0px 20px hotpink;
}
</style>
</head>
<body>
<main>
<section id="light-panel">
<div class="light"></div>
<div class="light"></div>
<div class="light"></div>
<div class="light"></div>
<div class="light"></div>
<div class="light"></div>
</section>
<section id="btn-panel">
<button type="button" id="start">Start</button>
<button type="button" id="stop">Stop</button>
</section>
</main>
<audio id="audio" src="assets/audio/audio.mp3"></audio>
<script src="assets/lib/jquery-3.7.1.min.js"></script>
<script src="assets/script.js"></script>
</body>
</html>