-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 765 Bytes
/
index.html
File metadata and controls
34 lines (29 loc) · 765 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>knowledge-graph</title>
<link rel="shortcut icon" type="image/x-icon" href="static/favicon.ico">
<style>
/*滚动条样式*/
/*滚动条整体部分*/
.scrollbar::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #F5F5F5;
}
.scrollbar::-webkit-scrollbar {
width: 4px;
height: 5px;
background-color: #F5F5F5;
}
.scrollbar::-webkit-scrollbar-thumb {
background-color: #666666;
}
</style>
</head>
<body class="scrollbar">
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>