forked from jackbox-int/tv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (92 loc) · 3.48 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en-US" class="js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="minimal-ui, width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Jackbox.TV</title>
<meta name="description" content="Jackbox.tv is your controller for all of the Jackbox Party Packs and standalone games. Make some weird memories.">
<meta name="application-name" content="Jackbox.TV">
<meta name="og:url" content="https://jackbox.tv/">
<meta name="og:title" content="Jackbox.TV">
<meta name="og:type" content="website">
<meta name="og:description" content="Jackbox.tv is your controller for all of the Jackbox Party Packs and standalone games. Make some weird memories.">
<meta name="og:image" content="./src/images/favicon-196x196.png">
<meta name="mobile-web-app-capable" content="yes">
<meta name="supported-color-schemes" content="">
<meta name="color-scheme" content="#4254F4">
<meta name="theme-color" content="#4254F4">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="icon" href="favicon.ico" sizes="any">
<link rel="icon" type="image/png" href="favicon-32.png" sizes="32x32">
<!-- TODO: Make SVG favicon for light and dark mode! -->
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="manifest" href="manifest.webmanifest">
<style>
html {
background-color: #0a1420;
}
.loader-status {
position: absolute;
top: 50%;
left: 50%;
width: 50px;
height: 50px;
margin-top: -25px;
margin-left: -25px;
}
.loader-status svg {
width: 100%;
height: 100%;
animation: loader-loading 0.5s alternate infinite ease-in-out;
}
.loader-status p {
position: absolute;
top: 110%;
left: -35px;
width: 120px;
text-align: center;
font-weight: 500;
font-size: 11px;
line-height: 1.2;
}
.loader-status.error p,
.loader-status.error svg {
cursor: pointer;
color: #f5f7f7;
fill: #ce4949;
animation: none;
}
@keyframes loader-loading {
0% {
fill: #1f2937;
}
100% {
fill: #353f4d;
}
}
</style>
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-V1QJVQMYF1"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-V1QJVQMYF1')
</script>
<script type="module" crossorigin="" src="script-0.js"></script>
<link rel="stylesheet" href="style-0.css">
</head>
<body>
<div class="loader-status">
<svg viewBox="0 0 100 100">
<path d="m16 40 31 14v37L16 76V62L0 54l16-14zM84 40 53 54v37l31-15V62l16-8-16-14zM50 10
a18.81 18.81 0 0 1 19 19 49.36 49.36 0 0 1-1 8s1.65-4 3-4c2.6 0 1.4 7 1.4 7L50 50 27.6 40
s-1.2-7 1.4-7c1.35 0 3 4 3 4a49.36 49.36 0 0 1-1-8 18.81 18.81 0 0 1 19-19Z"></path>
</svg>
</div>
<div id="app" class="app"></div>
</body>
</html>