-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 2.24 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 2.24 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Refractor Documentation</title>
<link rel="icon" href="favicon.png" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Documentation and user guide for the Refractor game server community manager." />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<!-- <link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"
/> -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css"
/>
<style>
:root {
--theme-color: #6696ff;
--mono-shade3: red;
--mono-shade2: #141c3d;
--mono-shade1: #1f2b5e;
--mono-base: #0a0e1f;
--mono-tint1: #29387a;
--mono-tint2: cyan;
--mono-tint3: white;
}
.sidebar-nav ul li p {
margin-bottom: 0;
}
code.language-bash,
code.lang-bash {
padding: 1.7em 1.5em 1.5em 2.5em !important;
position: relative;
}
code.language-bash::before,
code.lang-bash::before {
content: "$";
display: block;
position: absolute;
left: 1em;
user-select: none;
color: var(--mono-tint1);
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: "",
repo: "",
loadSidebar: true,
themeable: {
readyTransition: true,
responsiveTables: true,
},
};
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
</body>
</html>