-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 1.57 KB
/
Copy pathindex.html
File metadata and controls
54 lines (54 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Overlay Block Device</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="icon" type="image/svg+xml" href="assets/overlaybd_logo.svg">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"> -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@5/dist/themes/core.min.css" />
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@5/dist/themes/addons/buble.min.css" /> -->
<style>
.markdown-section tr:nth-child(2n) {
background-color: transparent;
}
.users-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 12px;
margin: 1em 0;
}
.users-grid a {
display: flex;
align-items: center;
justify-content: center;
height: 72px;
padding: 10px 14px;
border: 1px solid #eaecef;
border-radius: 8px;
}
.users-grid a:hover {
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
text-decoration: none;
}
.users-grid img {
max-height: 40px;
max-width: 100%;
object-fit: contain;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
auto2top: true,
name: '',
repo: ''
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@5"></script>
</body>
</html>