-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (106 loc) · 3.16 KB
/
index.html
File metadata and controls
123 lines (106 loc) · 3.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>OBJY - Abstract, powerful objects</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/docsify/lib/themes/vue.css">
<link href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/sushantrahate/docsify-darkly-theme/css/darkly.min.css">
<style>
:root {
--docsifytabs-border-color: #ededed;
--docsifytabs-tab-highlight-color: purple;
}
body {
background: #212121;
font-family: 'Montserrat', sans-serif !important;
}
a,
.anchor span {
color: #AAAAAA !important;
}
li.active a,
.anchor span {
color: #FFFFFF !important;
}
h1 {
margin-top: 80px !important;
font-size: 1.5rem !important;
}
h2 {
margin-top: 50px !important;
font-size: 1.2rem !important;
}
.sidebar {
border-right: none !important;
background: #212121 !important;
padding-top: 20px !important;
}
.content {
margin-right: 200px
}
.app-nav a {
font-size: 15px;
}
.sidebar-nav > ul > li > a {
font-weight: bold !important;
font-size: 15px;
color:#AAAAAA;
}
.markdown-section pre {
border-radius: 10px;
padding:10px;
}
.markdown-section pre>code {
padding: 5px;
}
@media only screen and (max-width: 770px) {
.content {
margin-right: 0px;
}
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: '',
repo: '',
loadSidebar: false,
loadNavbar: false,
//coverpage: true,
subMaxLevel: 2,
maxLevel: 3,
themeColor: "#42b983",
homepage: "./DOCUMENTATION.md",
darkMode: {
dark: {
background: "#1c2022",
toggleBtnBg: "#34495e",
textColor: "#b4b4b4"
},
homepage: "./DOCUMENTATION.md",
light: {
background: "white",
toggleBtnBg: "var(--theme-color)",
textColor: "var(--theme-color)"
}
},
tabs: {
persist : true, // default
sync : true, // default
theme : 'classic', // default
tabComments: true, // default
tabHeadings: true // default
}
}
</script>
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
</body>
</html>