-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (62 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
63 lines (62 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LeetCode Solutions by Topic</title>
<meta name="description" content="LeetCode solutions organized by topic, with explanations and code.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🚀</text></svg>">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<style>
:root {
--theme-color: #7c5cff;
--base-background-color: #14161b;
--sidebar-background: #1b1e25;
--base-color: #d7dbe0;
--sidebar-width: 22rem;
}
@media (max-width: 768px) {
:root {
--sidebar-width: 100vw;
}
.sidebar {
width: 100vw !important;
transform: translateX(-100vw);
}
.content {
left: 0 !important;
}
body.close .sidebar {
transform: translateX(0) !important;
}
}
</style>
</head>
<body>
<div id="app">Loading…</div>
<script>
window.$docsify = {
name: '🚀 LeetCode by Topic',
repo: 'https://github.com/rivka14/leetcode-solutions-by-topic',
loadSidebar: true,
subMaxLevel: 2,
auto2top: true,
homepage: 'README.md',
alias: {
'/.*/_sidebar.md': '/_sidebar.md'
},
search: {
placeholder: 'Search…',
noData: 'No results found.',
paths: 'auto',
depth: 4
}
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-themeable@0"></script>
<script src="//cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-csharp.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-python.min.js"></script>
</body>
</html>