-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 2.47 KB
/
index.html
File metadata and controls
72 lines (72 loc) · 2.47 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WorkStream KB</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.sidebar .sidebar-nav > ul > li > a {
font-weight: 600;
}
.markdown-section h1 {
border-bottom: 2px solid var(--theme-color, #42b983);
padding-bottom: 0.3em;
}
.markdown-section table {
display: table;
width: 100%;
}
/* search 인덱싱 중 Loading 텍스트 숨김 */
.sidebar .search .clear-button + p,
.sidebar .search .results-panel .loading {
display: none !important;
}
/* 다크 모드 */
@media (prefers-color-scheme: dark) {
body { background: #1e1e1e; color: #d4d4d4; }
.sidebar { background: #252526; color: #d4d4d4; }
.sidebar-nav a { color: #d4d4d4 !important; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: #42b983 !important; }
.markdown-section { color: #d4d4d4; }
.markdown-section code { background: #2d2d2d; color: #ce9178; }
.markdown-section pre { background: #1e1e1e !important; }
.markdown-section table tr:nth-child(2n) { background: #2d2d2d; }
.markdown-section blockquote { border-left-color: #42b983; color: #aaa; }
.search .input-wrap { background: #2d2d2d; }
.search input { background: #2d2d2d; color: #d4d4d4; }
.search .results-panel { background: #252526; }
.search .matching-post { border-bottom-color: #333; }
.app-nav { background: #1e1e1e; }
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'WorkStream KB',
repo: '',
loadSidebar: true,
subMaxLevel: 2,
homepage: 'homepage.md',
search: {
maxAge: 86400000,
paths: 'auto',
placeholder: '검색어를 입력하세요',
noData: '결과 없음',
depth: 3,
hideOtherSidebarContent: false,
namespace: 'workstream-kb-v3',
},
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@4/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/front-matter.min.js"></script>
</body>
</html>