-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.4 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
<html>
<head>
<title>New Tab</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
}
#app {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@font-face {
font-family: 'Open Sans';
src: url('/fonts/OpenSans-Bold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto Condensed';
src: url('/fonts/RobotoCondensed-Bold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="/css/animations.css">
</head>
<body>
<div id="app"></div>
<script type="text/javascript" src="/resources/react-with-addons.min.js"></script>
<script type="text/javascript" src="/resources/react-dom.min.js"></script>
<script type="text/javascript" src="/resources/localForage.min.js"></script>
<script type="text/javascript" src="/resources/moment.js"></script>
<script type="text/javascript" src="/app/time.js"></script>
<script type="text/javascript" src="/app/link.js"></script>
<script type="text/javascript" src="/app/background.js"></script>
<script type="text/javascript" src="/app/widget-container.js"></script>
<script type="text/javascript" src="/app/app.js"></script>
</body>
</html>