-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.html
70 lines (66 loc) · 2.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>Neuro</title>
<meta name="description" content="Ranvier websocket client">
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="./manifest.json">
<script src="./bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<script src="./bower_components/ansi_up/ansi_up.js"></script>
<link rel="import" href="./src/neuro-app/neuro-app.html">
<style>
html {
box-sizing: border-box;
--ranvier-green: #689F63;
}
*, *:before, *:after {
box-sizing: inherit;
}
@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
src: local('Roboto Mono'), local('RobotoMono-Regular'),
url('./assets/fonts/roboto-mono-v4-latin-regular.woff2') format('woff2'),
url('./assets/fonts/roboto-mono-v4-latin-regular.woff') format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'),
url('./assets/fonts/roboto-v16-latin-regular.woff2') format('woff2'),
url('./assets/fonts/roboto-v16-latin-regular.woff') format('woff');
}
@font-face {
font-family: 'Saira Condensed';
font-style: normal;
font-weight: 400;
src: local('Saira Condensed'), local('SairaCondensed-Regular'), url('./assets/fonts/SairaCondensed-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: local('Material Icons'), local('MaterialIcons-Regular'), url('./assets/fonts/MaterialIcons-Regular.woff2') format('woff2');
}
html, body {
margin: 0;
padding: 0;
font-family: 'Saira Condensed', sans-serif;
font-size: 16px;
box-sizing: border-box;
}
</style>
</head>
<body>
<neuro-app></neuro-app>
<script>
if (require) {
require('./renderer.js')
}
</script>
</body>
</html>