forked from mercurius-js/mercurius
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (62 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Mercurius</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://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css"
media="(prefers-color-scheme: dark)"
/>
<style>
:root {
--base-font-size: 16px;
--theme-color: rgb(238, 156, 62);
--link-color: rgb(238, 156, 62);
--link-color--hover: rgb(238, 156, 62);
--sidebar-name-margin: 0;
--sidebar-name-padding: 0;
--code-font-size: 0.9em;
}
.sidebar > h1 {
margin-bottom: -0.75em;
margin-top: 0.75em;
}
.sidebar > h1 img {
height: 4em;
}
.markdown-section a code {
color: var(--link-color) !important;
}
.markdown-section code:not([class*='lang-']):not([class*='language-']) {
white-space: unset;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
loadSidebar: 'docsify/sidebar.md',
name: 'Mercurius',
repo: 'https://github.com/mercurius-js/mercurius',
auto2top: true
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script>
</body>
</html>