-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (116 loc) · 3.53 KB
/
index.html
File metadata and controls
122 lines (116 loc) · 3.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<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">
</head>
<body>
<div id="app"></div>
<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&family=Open+Sans&family=Rajdhani:wght@700&display=swap');
body {
--mdc-theme-primary: #C71E51;
}
.app-name {
padding: 1em;
}
h1 { font-family: 'Rajdhani', sans-serif; }
h2 { font-family: 'Rajdhani', sans-serif; }
h3 { font-family: 'Rajdhani', sans-serif; }
p { font-family: 'Open Sans', sans-serif; }
li { font-family: 'Open Sans', sans-serif; }
pre {
border-radius: 1em;
}
/* inline code */
.markdown-section code {
background-color: #eeeeee;
border-radius: 4px;
color: #F54C40;
font-family: 'JetBrains Mono', Monaco, courier, monospace;
font-size: 0.8rem;
margin: 8px 2px;
padding: 3px 5px;
white-space: pre-wrap;
}
.markdown-section pre>code {
background-color: #282828;
border-radius: 2px;
color: #fafafa;
font-family: 'JetBrains Mono', Monaco, courier, monospace;
font-size: 0.8rem;
margin: 8px 2px;
padding: 3px 5px;
white-space: pre-wrap;
}
.markdown-section pre {
-moz-osx-font-smoothing: initial;
-webkit-font-smoothing: initial;
background-color: #282828;
font-family: 'JetBrains Mono', Monaco, courier, monospace;
line-height: 1.5rem;
margin: 1.2em 0;
overflow: auto;
padding: 0 0.5rem;
position: relative;
word-wrap: normal;
}
.token.key.atrule { color: #fcc444; }
.token.punctuation { color: #abb1b3; }
.token.function { color: #fcc444; }
.token.keyword { color: #FC7A44; }
.token.string { color: #F54C40; }
.docsify-copy-code-button {
font-family: 'Open Sans', sans-serif;
font-size: 0.8em;
border-radius: 0 0 0 0.8em;
}
.pagination-item-title {
font-family: 'Rajdhani', sans-serif;
}
a > button > span {
font-family: 'Rajdhani', sans-serif;
}
.examples {
display: flex;
flex-wrap: wrap;
}
.example {
width: 200px;
padding: 16px;
margin-right: 16px;
margin-bottom: 16px;
}
.mdc-card > h2 {
margin: 0;
}
</style>
<script>
window.$docsify = {
name: 'Chest Docs',
repo: 'github.com/chestdb/chest',
auto2top: true,
loadSidebar: true,
subMaxLevel: 2,
homepage: 'getting-started.md',
themeColor: '#C71E51',
logo: 'assets/logo.svg',
pagination: {
crossChapter: true
},
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://unpkg.com/docsify-copy-code@2"></script>
<script src="https://unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="https://unpkg.com/prismjs/components/prism-dart.min.js"></script>
<script src="https://unpkg.com/prismjs/components/prism-yaml.min.js"></script>
<link href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css" rel="stylesheet">
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
</body>
</html>