Skip to content

Commit

Permalink
upload
Browse files Browse the repository at this point in the history
  • Loading branch information
openingnow committed Mar 6, 2024
1 parent 80d7af2 commit 0ce30dd
Show file tree
Hide file tree
Showing 3 changed files with 143 additions and 0 deletions.
Binary file added answ.wasm
Binary file not shown.
41 changes: 41 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!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="main.js" type="module"></script>
</body>

</html>
102 changes: 102 additions & 0 deletions main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0ce30dd

Please sign in to comment.