-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 963 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
43
44
45
46
47
<!doctype html>
<html lang="en">
<head>
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<script
defer
src="https://eu.umami.is/script.js"
data-website-id="d235e75f-a36e-415e-834e-d36fe972b8c3"
></script>
<style>
body {
overflow: auto;
padding: 0;
margin: 0 auto;
width: 100%;
background: #d9d9d9;
}
a {
text-decoration: none;
}
::-webkit-scrollbar-track {
background: rgb(0 0 0 / 10%);
border-radius: 0;
}
::-webkit-scrollbar {
appearance: none;
width: 8px;
height: 8px;
}
::-webkit-scrollbar-thumb {
background: rgb(0 0 0 / 30%);
border-radius: 5px;
transition: color 0.2s ease;
cursor: pointer;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>