-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 886 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Please wait...</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/pixelbrackets/gfm-stylesheet/dist/gfm.min.css">
<style>
.tooltip {
position: relative;
}
.tooltiptext {
visibility: hidden;
white-space: nowrap;
border-style: solid;
border-width: 1px;
background-color: white;
/* Position the tooltip */
position: absolute;
z-index: 1;
top: 70%;
left: 30%;
transition-property: visibility;
transition-delay: 0s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
</style>
</head>
<body>
Please wait...
<script src="ffi.js" type="module"></script>
<script src="main.js" type="module"></script>
</body>
</html>