This repository was archived by the owner on May 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (55 loc) · 1.67 KB
/
index.html
File metadata and controls
61 lines (55 loc) · 1.67 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="PC-TV">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=no">
<title>PC-TV</title>
<meta name="description" content="FRC401 Pit UI">
<link rel="icon" href="/images/favicon.ico">
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#d35401">
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="PC-TV">
<script src="announce.js"></script>
<script src="http://player.twitch.tv/js/embed/v1.js"></script>
<script>
// Setup Polymer options
window.Polymer = {
dom: 'shady',
lazyRegister: true,
};
(function () {
'use strict';
var onload = function () {
if (!window.HTMLImports) {
document.dispatchEvent(
new CustomEvent('WebComponentsReady', {
bubbles: true
})
);
}
};
onload();
})();
</script>
<link rel="import" href="src/tv-app.html">
<style>
body {
margin: 0;
font-family: 'Roboto', 'Noto', sans-serif;
line-height: 1.5;
min-height: 100vh;
background-color: #eeeeee;
}
::-webkit-scrollbar {
width: 0;
display: none;
background: transparent;
}
</style>
</head>
<body class="fullbleed vertical layout">
<tv-app class="flex"></tv-app>
</body>
</html>