-
Notifications
You must be signed in to change notification settings - Fork 0
/
pathway-viewer-index.html
80 lines (61 loc) · 2.85 KB
/
pathway-viewer-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Pathway Viewer</title>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!-- Chrome for Android theme color -->
<!--<meta name="theme-color" content="#303F9F">-->
<meta name="theme-color" content="#000000">
<!-- Web Application Manifest -->
<link rel="manifest" href="manifest.json">
<!-- Windows Theme color -->
<meta name="msapplication-TileColor" content="#3372DF">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Pathway Viewer">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Pathway Viewer">
<!-- Force Microsoft use latest web tech -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- END meta -->
<!--Config-->
<script src="../network-viewer/conf/config.js"></script>
<script src="conf/config.js"></script>
<!-- Normalize -->
<link href='../normalize-css/normalize.css' rel='stylesheet' type='text/css'>
<!--Fonts-->
<link href='../stevia-elements/fonts/fonts.css' rel='stylesheet' type='text/css'>
<link href='../fontawesome/css/font-awesome.min.css' rel='stylesheet' type='text/css'>
<!--CSS-->
<link href='../stevia-elements/css/global.css' rel='stylesheet' type='text/css'>
<link href='../stevia-elements/css/form.css' rel='stylesheet' type='text/css'>
<link href='../stevia-elements/css/context.css' rel='stylesheet' type='text/css'>
<!--Web Components-->
<script src="../webcomponentsjs/webcomponents-lite.min.js"></script>
<link rel="import" href="pathway-viewer.html">
<link rel="import" href="conf/theme.html">
<style>
pathway-viewer {
background-color: #EDEDED;
}
</style>
</head>
<body unresolved class="fullbleed">
<pathway-viewer class="container" path="../pathways" path-type="url">
<div class="right-label ">
External box:
</div>
<div class="right-box" style="height:100px;">
</div>
<div class="left-label stv-btn stv-btn-shdw">!</div>
</pathway-viewer>
<script>
var pathwayViewer = document.querySelector('pathway-viewer');
</script>
</body>
</html>