forked from NeoSunJZ/OceanLibWebAdmin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (24 loc) · 782 Bytes
/
index.html
File metadata and controls
28 lines (24 loc) · 782 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/logo.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ocean 管理平台</title>
<style>
::-webkit-scrollbar {
width: 15px;
height: 15px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
background-color: #1463a8;
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}
</style>
</head>
<body>
<div id="app" style="height: 100%;display: flex;flex-direction: column;"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>