-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
93 lines (82 loc) · 3.25 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
87
88
89
90
91
92
93
<!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 rel="icon" type="image/ico" href="./src/assets/favicon.ico">
<script type="module" src="./src/main.ts"></script>
<style>
@font-face {
font-family: "BeaufortW01-Bold";
src: url("src/assets/BeaufortW01-Bold.ttf") format('truetype');
}
* {
scrollbar-width: thin;
font-family: 'BeaufortW01-Bold';
}
html {
--theme-color: #a1b0d8;
--background-color: #2c2f3e;
}
body {
margin: 0;
background: var(--background-color);
}
</style>
</head>
<body>
<div id="modal">
<div id="modal-content"></div>
</div>
<div id="container">
<div id="sidebar">
<div id="sidebar-info">
<button id="vid-folder-btn" class="btn">Open Video Folder</button>
<p id="size">Size: <span id="size-inner">-</span> GB</p>
</div>
<ul id="sidebar-content"></ul>
</div>
<div id="main" class="hide-scrollbar">
<video id="video_player" class="video-js vjs-big-play-centered">
<p class="vjs-no-js"> Error: JavaScript not enabled </p>
</video>
<div id="description">
<div id="description-left"></div>
<div id="description-center"></div>
<div id="description-right">
<div id="marker-lists">
<div class="marker-list">
<input type="checkbox" id="kill" checked>
<label for="kill"> Kills </label>
<br>
<input type="checkbox" id="death" checked>
<label for="death"> Deaths </label>
<br>
<input type="checkbox" id="assist" checked>
<label for="assist"> Assists </label>
<br>
<input type="checkbox" id="turret" checked>
<label for="turret"> Turret </label>
</div>
<div class="marker-list">
<input type="checkbox" id="inhibitor" checked>
<label for="inhibitor"> Inhibitor </label>
<br>
<input type="checkbox" id="dragon" checked>
<label for="dragon"> Dragon </label>
<br>
<input type="checkbox" id="herald" checked>
<label for="herald"> Herald </label>
<br>
<input type="checkbox" id="baron" checked>
<label for="baron"> Baron </label>
</div>
</div>
<button id="copy-timestamps-btn" class="btn">Timestamps</button>
</div>
</div>
</div>
</div>
</body>
</html>