diff options
| author | julian laplace <julescarbon@gmail.com> | 2023-06-14 22:49:35 +0200 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2023-06-14 22:49:35 +0200 |
| commit | a8cbeae2d3677fe48bc88f3e8d61cf4649eef899 (patch) | |
| tree | 5a4c33e24c8d0aa0430562a4b84e81c03d6a0113 /index.html | |
init
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..dd573a7 --- /dev/null +++ b/index.html @@ -0,0 +1,24 @@ +<html> + <head> + <title>mousey</title> + <meta + name="viewport" + content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;" + /> + <style> + html, + body { + overflow: hidden; + } + body { + color: white; + background-color: #000; + text-shadow: 0 0 1px #000; + transition: background-color 100ms; + user-select: none; + } + </style> + </head> + <body></body> + <script src="dist/main.js"></script> +</html> |
