-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (71 loc) · 2.4 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
<!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>Cyclius Calculator</title>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="css/index.min.css" />
</head>
<body>
<div class="container">
<div class="slider-wrapper">
<h1 id="clock"></h1>
<input name="sliderToggle" type="checkbox" id="sliderToggle">
<label id="sliderToggleLabel" for="sliderToggle">Override time for testing</label>
<input type="range" min="0" max="24" id="slider">
</div>
<div class="slots">
<div class="slot diamond">
<input
class="slot-isActive"
type="radio"
name="active-slot"
id="diamond" />
<img src="img/diamond.webp" alt="diamond icon" class="slot-icon" />
<span class="slot-name">Diamond</span>
<span class="slot-value"></span>
<img
class="slot-isBest"
data-is-best="false"
src="img/star.webp"
alt="star icon" />
</div>
<div class="slot ruby">
<input
class="slot-isActive"
type="radio"
name="active-slot"
id="ruby" />
<img src="img/ruby.webp" alt="ruby icon" class="slot-icon" />
<span class="slot-name">Ruby</span>
<span class="slot-value"></span>
<img
class="slot-isBest"
data-is-best="false"
src="img/star.webp"
alt="star icon" />
</div>
<div class="slot jade">
<input
class="slot-isActive"
type="radio"
name="active-slot"
id="jade" />
<img src="img/jade.webp" alt="jade icon" class="slot-icon" />
<span class="slot-name">Jade</span>
<span class="slot-value"></span>
<img
class="slot-isBest"
data-is-best="false"
src="img/star.webp"
alt="star icon" />
</div>
</div>
<button class="unsocket-btn">Unsocket</button>
</div>
<script src="js/index.js"></script>
<script src="js/slider.js"></script>
</body>
</html>