forked from MapComplete/MapComplete
82 lines
1.8 KiB
HTML
82 lines
1.8 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<!-- This is meant to be run with docsify -->
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Document</title>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||
|
<meta name="description" content="Description">
|
||
|
<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">
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app"></div>
|
||
|
<script>
|
||
|
window.$docsify = {
|
||
|
name: "MapComplete Docs",
|
||
|
noEmoji: true,
|
||
|
loadSidebar: true,
|
||
|
autoToTop: true,
|
||
|
repo: "https://source.mapcomplete.org/mapcomplete/mapcomplete/",
|
||
|
search: {
|
||
|
maxAge: 86400000, // 1 day cache
|
||
|
paths: "auto",
|
||
|
auto2top: true,
|
||
|
placeholder: "Search",
|
||
|
noData: "No Results!",
|
||
|
depth: 2,
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
<!-- Docsify v4 -->
|
||
|
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
|
||
|
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.js"></script>
|
||
|
|
||
|
<style>
|
||
|
.sidebar a {
|
||
|
line-height: 1.3em;
|
||
|
}
|
||
|
|
||
|
.sidebar {
|
||
|
padding-left: 1rem;
|
||
|
}
|
||
|
|
||
|
.sidebar strong {
|
||
|
font-size: 1.2em;
|
||
|
}
|
||
|
|
||
|
.sidebar p:has(strong){
|
||
|
margin: 0;
|
||
|
top: 0;
|
||
|
position: sticky;
|
||
|
background: white;
|
||
|
padding: 0.25rem;
|
||
|
}
|
||
|
|
||
|
.sidebar a:has(strong) {
|
||
|
|
||
|
margin-top: 1em;
|
||
|
}
|
||
|
|
||
|
.active a {
|
||
|
color: #42b983 !important;;
|
||
|
color: var(--theme-color, #42b983) !important;
|
||
|
font-weight: 600 !important;
|
||
|
border-right: 2px solid !important;
|
||
|
}
|
||
|
|
||
|
/*noinspection CssUnusedSymbol*/
|
||
|
.back-to-mc {
|
||
|
display: block;
|
||
|
padding: 0.5rem;
|
||
|
background: #3f3f39;
|
||
|
color: white;
|
||
|
border: 2px solid white;
|
||
|
border-radius: 0.5rem;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</body>
|
||
|
</html>
|