-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (85 loc) · 3.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>news-r</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-defaults.css">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display|Ubuntu&display=swap" rel="stylesheet">
<style>
:root {
/* Reduce the font size */
--base-font-size: 18px;
--base-background-color: #f9f7f1;
--base-color: #2f2f2f;
--base-font-family: 'Playfair Display', serif;
--pre-font-family: font-family: 'Ubuntu', sans-serif;
--code-font-family: 'Ubuntu', sans-serif;
--code-font-size: 13px;
--code-theme-background: #f4f1e6;
--code-theme-text: #2f2f2f;
--code-theme-comment: #8c8c8c;
--code-theme-operator: #247BA0;
--cover-blockquote-color: #2f2f2f;
--cover-heading-color: #2f2f2f;
--cover-heading-font-size: 100px;
--cover-button-primary-background: #247BA0;
--selection-color: #B2DBBF;
--heading-h1-color: #247BA0;
--link-text-decoration-color--hover: #FF1654;
--copycode-background: #2f2f2f;
--copycode-color: #2f2f2f;
--sidebar-background: #f4f1e6;
--sidebar-width: 16rem;
--sidebar-name-color: #247BA0;
--sidebar-name-font-weight: bold;
--search-background: #f9f7f1;
--search-result-keyword-color: #FF1654;
--pagination-label-font-size: 15px;
--pagination-title-font-size: 25px;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
themeColor: '#247BA0',
loadSidebar: true,
coverpage: true,
ga: 'UA-74544116-1',
name: '📰 news-r',
repo: 'https://github.com/news-r',
ga: 'UA-74544116-1',
logo: 'news-r-margin.png',
nameLink : "/",
themeable: {
readyTransition : true, // default
responsiveTables: true // default
},
tabs: {
persist: true, // default
theme: 'material'
},
copyCode: {
buttonText : '📃',
errorText : 'Error',
successText: 'Copied'
}
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></script>
<script src="//unpkg.com/prismjs/components/prism-r.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/docsify-copy-code"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
</body>
</html>