-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
57 lines (49 loc) · 1.29 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
<!-- <!doctype html> -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>qrtransfer</title>
<style>
svg {
width: 200 !important;
height: 200 !important;
}
.float {
position: fixed;
bottom: 140px;
right: 140px;
}
/* following 3 to centralize page */
#inner-div {
margin-left: auto;
margin-right: auto;
width: 600px
}
#middle-div {
display: table-cell;
vertical-align: middle
}
#outer-div {
display: table;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
</style>
<!-- <script src="//cdn.bootcdn.net/ajax/libs/eruda/2.3.3/eruda.js"></script>
<script>eruda.init();</script> -->
</head>
<script>console.log("Initializing wasm...");</script>
<body>
<div id="main"> </div>
<div id="spinner">
<div class="d-flex align-items-center">
<strong>Loading...</strong>
<div class="spinner-border ms-auto" role="status" aria-hidden="true"></div>
</div>
</div>
</body>
</html>