-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (85 loc) · 2.31 KB
/
index.html
File metadata and controls
93 lines (85 loc) · 2.31 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Workbench – Tiny Mesh</title>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" media="all" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/gggiioljfnkabofaoknolicdlnjadcpn"></link>
<style type="text/css">
body.blockloader-init {
background: #111;
}
#initial-loader p {
position: absolute;
top: 55%;
width: 760px;
left: 50%;
margin: 50px 0 0 -380px;
color: #555;
text-align: center:
}
body.blockloader-init .loader { min-height: 0px; }
body.blockloader-init {
background: #111;
}
body.blockloader-init footer {
color: #eee;
position: fixed;
bottom: 0px;
width: 100%;
text-align: center;
padding-bottom: 40px;
}
body.blockloader-init footer .container-fluid {
border: none;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
body.blockloader-init footer .links {
color: #444;
}
body.blockloader-init footer .links a {
color: #777;
}
body.blockloader-init #data,
body.blockloader-init #auth,
body.blockloader-init #modal {
display: none;
}
</style>
</head>
<body class="blockloader-init">
<div class="container-fluid" id="initial-loader" class="fade">
<div class="loader">
<div class="square" ></div>
<div class="square"></div>
<div class="square last"></div>
<div class="square clear"></div>
<div class="square"></div>
<div class="square last"></div>
<div class="square clear"></div>
<div class="square "></div>
<div class="square last"></div>
</div>
<p class="loader-text">
Application is loading. This shouldn't take more than a few
seconds. If it takes a very long time, make sure you are
using a modern web browser (preferably chrome) - if you are
try refreshing the page or contact support.
</p>
</div>
<div id="app"></div>
<footer>
<div class="container-fluid">
<div class="row">
<ul class="links muted">
<li>© 2012-2015 <a href="https://tiny-mesh.com">Tiny Mesh AS</a></li>
</ul>
</div>
</div>
</footer>
</body>
<script type="text/javascript" src="./build/dist.js"></script>
</html>