-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 2.24 KB
/
index.html
File metadata and controls
61 lines (61 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Iterable CLI</title>
<meta name="description" content="Command-line interface for the Iterable API">
<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" media="(prefers-color-scheme: light)">
<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 {
--sidebar-name-font-weight: bold;
--sidebar-name-text-align: left;
--heading-font-weight: 700;
}
@media (prefers-color-scheme: light) {
:root {
--theme-color: #357a69;
--base-background-color: #f5f5f7;
--sidebar-background: #ebebef;
--heading-color: #1e1e2e;
}
}
@media (prefers-color-scheme: dark) {
:root {
--theme-color: #5DB5A1;
--mono-shade3: hsl(230, 20%, 7%);
--mono-shade2: hsl(230, 20%, 9%);
--mono-shade1: hsl(230, 20%, 11%);
--mono-base: hsl(230, 20%, 13%);
--mono-tint1: hsl(230, 20%, 19%);
--heading-color: #e0e0e0;
}
}
.app-name-link {
background: url('https://github.com/Iterable.png') no-repeat left center / 1.2em;
padding-left: 1.7em;
border-radius: 4px;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Iterable CLI',
repo: 'https://github.com/Iterable/cli',
loadSidebar: true,
subMaxLevel: 2,
search: 'auto',
auto2top: true,
};
</script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-json.min.js"></script>
</body>
</html>