-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (77 loc) · 1.45 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
71
72
73
74
75
76
77
<html>
<head>
<style>
* {
padding: 0;
margin: 0;
background-color: black;
}
#progBarContainer {
position: absolute;
top: 80%;
left: 50%;
width: 25%;
color: white;
text-align: center;
transform: translateX(-50%);
font-family: monospace;
}
#progBar {
position: relative;
border: 1px solid white;
border-radius: 16px;
}
#progBarProg {
margin: 4px;
background-color: white;
border-radius: 8px;
height: 1em;
width: 0%;
}
#progBarProgText {
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
color: white;
mix-blend-mode: difference;
}
.fadeAway {
transition: opacity 2s;
opacity: 0;
}
#buttonContainer {
position: absolute;
top: 10%;
left: 10%;
}
.button {
border: 1px solid white;
border-radius: 8px;
padding: 4px;
color: white;
cursor: pointer;
}
.button:hover {
background-color: gray;
}
</style>
</head>
<body>
<!--
<div id="buttonContainer">
<div class="button" id="buttonA" onclick="testA()">Run test A</div>
<div class="button" id="buttonB" onclick="testB()">Run test B</div>
</div>
<div id="progBarContainer">
<div id="progBarText">Waiting...</div>
<div id="progBar">
<div id="progBarProgText">0%</div>
<div id="progBarProg">
</div>
</div>
</div>
-->
<script src="./bundle.js"></script>
</body>
</html>