-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (68 loc) · 1.93 KB
/
index.html
File metadata and controls
77 lines (68 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>bspwmctl</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<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">
<style>
.github-corner {
clip-path: polygon(0 0, 100% 0, 100% 100%);
}
section.cover {
background: linear-gradient(45deg, #000000 0%, #2c2c2c 100%) !important;
}
section.cover .cover-main a {
margin: 0.5rem;
border-radius: 2rem;
text-decoration: none;
font-weight: bold;
transition: 0.3s;
display: inline-block;
}
section.cover .cover-main a:last-child {
background-color: #42b983;
color: white;
padding: 0.8rem 2rem;
border: 2px solid #42b983;
}
section.cover .cover-main a:last-child:hover {
background-color: #33a372;
box-shadow: 0 0 15px rgba(66, 185, 131, 0.5);
}
section.cover .cover-main a:first-child {
background-color: transparent;
color: #fff;
border: 2px solid #fff;
padding: 0.8rem 2rem;
}
section.cover .cover-main a:first-child:hover {
background-color: rgba(255, 255, 255, 0.1);
}
</style>
</head>
<body>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: 'bspwmctl',
repo: 'bspwmctl/bspwmctl',
loadNavbar: true,
mergeNavbar: true,
nameLink: {
'/es/': '#/es/',
'/': '#/'
},
coverpage: true,
onlyCover: true,
loadSidebar: true,
auto2top: true,
search: 'auto'
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
</body>
</html>