-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (79 loc) · 2.7 KB
/
index.html
File metadata and controls
89 lines (79 loc) · 2.7 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
<!DOCTYPE html>
<html>
<head>
<title>VOD Finder</title>
<link rel="stylesheet" href="landing.css">
<link rel="icon" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta name="darkreader-lock">
<meta property="og:title" content="VOD Finder">
<meta property="og:description" content="Find Twitch VODs and their .m3u8 link, for both public and hidden VODs">
<meta name="description" content="Find Twitch VODs and their .m3u8 link, for both public and hidden VODs">
<meta property="og:url" content="https://vod.starsita.xyz">
<meta property="theme-color" content="#1D1127">
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=inter:500,600,700" rel="stylesheet" />
</head>
<body>
<div class="background">
<div id="banner"></div>
<div class="blur"></div>
</div>
<header>
<div id="logoContainer">
<svg class="logo" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" id="Layer_1" x="0" y="0"
style="enable-background:new 0 0 2400 2800" version="1.1" viewBox="0 0 2400 2800">
<style>
.st1 {
fill: #9146ff
}
</style>
<path d="m2200 1300-400 400h-400l-350 350v-350H600V200h1600z" style="fill:#fff" />
<g id="Layer_1-2">
<path
d="M500 0 0 500v1800h600v500l500-500h400l900-900V0H500zm1700 1300-400 400h-400l-350 350v-350H600V200h1600v1100z"
class="st1" />
<path d="M1700 550h200v600h-200zM1150 550h200v600h-200z" class="st1" />
</g>
</svg>
<h1 class="text-shadow">VOD Finder</h1>
</div>
<input type="text" id="input" autocomplete="off" class="box-shadow">
<label id="checkboxContainer" class="text-shadow">
<div class="check box-shadow"></div>
<input type="checkbox" id="checkbox">
Merge public/hidden VODs
</label>
<div id="loading">
<span class="throbber"></span>
<div id="states"></div>
</div>
</header>
<main>
<div>
<h2 class="text-shadow">Public VODs</h2>
<section class="box-shadow" id="publicContainer"></section>
</div>
<div>
<h2 class="text-shadow">Hidden VODs</h2>
<section class="box-shadow" id="hiddenContainer"></section>
</div>
<div>
<h2 class="text-shadow">VODs</h2>
<section class="box-shadow" id="allContainer"></section>
</div>
</main>
<footer>
<span class="text-shadow">Made with <3 by</span>
<a class="text-shadow" href="https://github.com/FrAndroidd">FrAndroid</a>
<br style="display: none;">
<span class="text-shadow dot"> · </span>
<span class="text-shadow">Not affiliated with Twitch</span>
</footer>
<script src="public.js"></script>
<script src="hidden.js"></script>
<script src="parse.js"></script>
<script src="main.js"></script>
</body>
</html>