This repository was archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (48 loc) · 1.9 KB
/
index.html
File metadata and controls
57 lines (48 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover">
<meta name="description" content="TranClate Wiki">
<title>TranClate Wiki</title>
<!-- Themes -->
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<!-- Custom Styles -->
<link href="style.css" rel="stylesheet" type="text/css"/>
<style>
:root {
--content-max-width : 65em;
--base-background-color: #2a2d2d;
--base-color : #f0ebe2;
/* --theme-hue: 325; */
/* sidebar */
--sidebar-background : linear-gradient(to bottom right, #405867, #393d3d) fixed;
--sidebar-nav-link-color--active : #e88d3c;
--sidebar-nav-link-border-color--active : #e88d3c ;
--code-theme-background: #222;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
// Docsify Configuration
window.$docsify = {
logo: '_media/banner.png',
name: 'TranClate',
loadSidebar: true,
subMaxLevel: 2,
themeColor: '#e88d3c',
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<!-- Required -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-kotlin.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-json.min.js"></script>
<!-- Recommended -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/zoom-image.min.js"></script>
</body>
</html>