-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (130 loc) · 5.04 KB
/
index.html
File metadata and controls
134 lines (130 loc) · 5.04 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
131
132
133
134
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>clock</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<span id="alarm" style="display: none"></span>
<div id="nav">
<div onclick="closeWindow()" id="close" class="TopButton"></div>
<div onclick="minWindow()" id="minimize" class="TopButton"></div>
</div>
<div class="clock-container">
<div class="clock-col">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
id="HA"
viewBox="0 0 24 24"
>
<path
d="M12.354 8.854l5.792 5.792a.5.5 0 01-.353.854H6.207a.5.5 0 01-.353-.854l5.792-5.792a.5.5 0 01.708 0z"
/>
<script xmlns="" />
</svg>
<p class="clock-hours clock-timer"></p>
<p class="clock-label">Hours</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
id="HR"
viewBox="0 0 24 24"
class="down"
>
<path
d="M12.354 8.854l5.792 5.792a.5.5 0 01-.353.854H6.207a.5.5 0 01-.353-.854l5.792-5.792a.5.5 0 01.708 0z"
/>
<script xmlns="" />
</svg>
</div>
<div class="clock-col">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
id="MA"
viewBox="0 0 24 24"
>
<path
d="M12.354 8.854l5.792 5.792a.5.5 0 01-.353.854H6.207a.5.5 0 01-.353-.854l5.792-5.792a.5.5 0 01.708 0z"
/>
<script xmlns="" />
</svg>
<p class="clock-minutes clock-timer"></p>
<p class="clock-label">Minutes</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
id="MR"
viewBox="0 0 24 24"
class="down"
>
<path
d="M12.354 8.854l5.792 5.792a.5.5 0 01-.353.854H6.207a.5.5 0 01-.353-.854l5.792-5.792a.5.5 0 01.708 0z"
/>
<script xmlns="" />
</svg>
</div>
<div class="clock-col">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
id="SA"
viewBox="0 0 24 24"
>
<path
d="M12.354 8.854l5.792 5.792a.5.5 0 01-.353.854H6.207a.5.5 0 01-.353-.854l5.792-5.792a.5.5 0 01.708 0z"
/>
<script xmlns="" />
</svg>
<p class="clock-seconds clock-timer"></p>
<p class="clock-label">Seconds</p>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
id="SR"
viewBox="0 0 24 24"
class="down"
>
<path
d="M12.354 8.854l5.792 5.792a.5.5 0 01-.353.854H6.207a.5.5 0 01-.353-.854l5.792-5.792a.5.5 0 01.708 0z"
/>
<script xmlns="" />
</svg>
</div>
</div>
<div class="button" id="start">Start</div>
<div class="button" id="pause">Pause | Play</div>
<div class="button" id="reset">Reset</div>
<div class="alarm" id="ok">OK</div>
<div class="theme" id="theme">🌙</div>
<div style="display: none" class="gray"></div>
<div class="settings" id="settingsBox">
<p>alarm</p>
<div class="select_container">
<div data-alarm="1" class="box alarm_change">
<img data-state="pause" src='./assets/images/play.svg' />
</div>
<div data-alarm='2' class='box alarm_change'>
<img data-state="pause" src='./assets/images/play.svg' />
</div>
<div data-alarm='3' class='box alarm_change'>
<img data-state="pause" src='./assets/images/play.svg' />
</div>
<div data-alarm='4' class='box alarm_change'>
<img data-state="pause" src='./assets/images/play.svg' />
</div>
</div>
</div>
<div class="settingsB" id="settings">⚙️</div>
<div class="music_player" id="settings">🎧</div>
<script src="./assets/js/render.js"></script>
</body>
</html>