-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (35 loc) · 1.22 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tier list creator</title>
<script type="module" src="./src/main.js"></script>
<link rel="stylesheet" href="./src/main.css" />
<link rel="icon" href="/icon.svg" />
</head>
<body>
<main>
<tier-row color="#ff7f7e" name="S (秀)"></tier-row>
<tier-row color="#ffbf7f" name="A (優)"></tier-row>
<tier-row color="#feff7f" name="B (良)"></tier-row>
<tier-row color="#7eff80" name="C (可)"></tier-row>
<tier-row color="#7fffff" name="D (認)"></tier-row>
<tier-row color="#807fff" name="F (不可)"></tier-row>
</main>
<div class="list-options">
<div class="list-options-container">
<button type="button" class="button" id="new-tier">New tier</button>
<button type="button" class="button" id="select-images">
Select images
</button>
<label class="checkbox">
<input type="checkbox" class="dynamic-style" id="square-img" />
<span>Square images</span>
</label>
<button type="button" class="button" id="gather-all">Gather all</button>
</div>
</div>
<div class="images-bar sort" id="images-bar"></div>
</body>
</html>