-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.17 KB
/
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
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script src="https://kit.fontawesome.com/dd2c5124db.js" crossorigin="anonymous"></script>
</body>
</html>
<style>
/*Dark Scrollbar*/
::-webkit-scrollbar {
width: 8px;
}
.vue-labelInput::-webkit-scrollbar {
width: 0px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #A5C4C5;
border: solid 1px #010910;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #50A45E;
}
::-webkit-scrollbar-corner {
background: #0000;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
transition: all 0s 50000s;
}
.vjs-tree-node:hover {
background: rgba(255, 255, 255, 0.1) !important;
}
</style>