-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.16 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/Logo_01.png">
<link href="./src/assets/output.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkyLib</title>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JWZKW7339R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JWZKW7339R');
</script>
<body class="body"> <!-- background="/src/assets/background_img_02.png" -->
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
<style scoped>
html::-webkit-scrollbar {
width: 6px;
}
html::-webkit-scrollbar-thumb {
background: rgba(100, 100, 100, 0.5);
border-radius: 4px;
}
html::-webkit-scrollbar-thumb:hover {
background: rgba(100, 100, 100, 0.8);
}
html::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
border-radius: 4px;
}
html {
scrollbar-width: thin;
scrollbar-color: rgb(67 67 67 / 50%) rgba(0, 0, 0, 0.1);
}
</style>