-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 2.39 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 2.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>🧻🤲 – paperhands</title>
<link rel="icon" type="image/png" href="/static/favicon.png" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js" integrity="sha512-RXf+QSDCUQs5uwRKaDoXt55jygZZm2V++WUZduaU/Ui/9EGp3f/2KZVahFZBKGH0s774sd3HmrhUy+SgOFQLVQ==" crossorigin="anonymous"></script>
<style>
.chart-target {
width: 100%;
height: 400px;
}
.loading-bar {
position: fixed;
top: 0;
width: 100%;
left: 0;
}
.loader-wrapper {
min-height: 100px;
position: relative;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: #fff;
opacity: 0;
z-index: -1;
transition: opacity .3s;
display: flex;
justify-content: center;
align-items: center;
border-radius: 6px;
}
.loader-wrapper.loader {
height: 80px;
width: 80px;
}
.loader-wrapper.is-active {
opacity: 1;
z-index: 1;
}
.footer {
padding: 1rem 1.5rem;
}
.main-section {
min-height: 94vh;
}
</style>
</head>
<body>
<section class="section main-section">
<div id="target" class="container"></div>
</section>
<script type="text/javascript" src="./target/scala-2.13/scalajs-bundler/main/paperhands-ui-fastopt-bundle.js"></script>
<!-- <script type="text/javascript" src="./target/scala-2.13/scalajs-bundler/main/paperhands-ui-opt-bundle.js"></script> -->
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Paperhands</strong> by <a href="https://github.com/Gonzih" target="_blank">Max Gonzih</a>.
</p>
</div>
</footer>
</body>
</html>