-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (109 loc) · 3.81 KB
/
index.html
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
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<title>Neterial documentation</title>
<style>
:root {
--base-font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--base-font-size: 16px;
/* Zmeev add */
--base-letter-spacing: -1%;
--heading-h1-font-weight: 700;
--heading-h2-font-weight: 600;
/* End of Zmeev add */
--theme-color: rgb(84, 107, 228);
--link-color: rgb(84, 107, 228);
--link-color--hover: #EE2B47;
--sidebar-name-margin: 0;
--sidebar-name-padding: 0;
--sidebar-padding: 0 25px;
--code-font-size: .9em;
}
.sidebar > h1 {
margin-bottom: -.75em;
margin-top: .75em;
}
.sidebar > h1 img {
height: 1.4em;
}
.markdown-section a code {
color: var(--link-color)!important;
}
.markdown-section code:not([class*="lang-"]):not([class*="language-"]) {
white-space: unset
}
/*Zmeev add */
.app-nav:not(:empty)~main .markdown-section {
padding-top: 8em;
}
.markdown-section h1 a[data-id], .markdown-section h2 a[data-id], .markdown-section h3 a[data-id], .markdown-section h4 a[data-id], .markdown-section h5 a[data-id], .markdown-section h6 a[data-id] {
letter-spacing: -0.025em;
}
/* End of Zmeev add */
.github-corner {
display: none
}
nav.app-nav {
margin-left: var(--sidebar-width);
padding: 1.18em 0 1.18em 0;
}
/*Zmeev: Hide header on mobile */
@media screen and (max-width: 600px) {
nav.app-nav {
display: none;
}
}
/*Zmeev: End of Hide header on mobile */
.app-nav {
position: sticky; /* Zmeev: Changed to from absolute to sticke */
z-index: 30;
top: 0;
/*Zmeev add */
left: 0px;
right: 0px;
background: var(--sidebar-background);
box-shadow: 1px 1px 1px 1px rgb(0 0 0 / 5%);
text-align: center;
font-family: Inter, Inconsolata, Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
font-weight: 500;
/* End of Zmeev add */
}
</style>
<link rel="icon" type="image/svg" sizes="16x16" href="Neterial-logo.svg">
<link rel="icon" type="image/svg" sizes="32x32" href="Neterial-logo.svg">
</head>
<body>
<div id="app"></div>
</body>
<script>
window.$docsify = {
name: 'Documentation',
logo: 'Neterial-Logo-Black.svg',
loadSidebar: '_sidebar.md',
loadNavbar: '_navbar.md',
loadFooter: '_footer.md',
repo: 'https://github.com/neterialio/docs/tree/main',
auto2top: true,
relativePath: true
}
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7LTTQN7WT3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7LTTQN7WT3');
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/@alertbox/docsify-footer/dist/docsify-footer.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-yaml.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
</html>