-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
4,732 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<script> | ||
// Hack for scrolling window when linking to anchor tag with fixed nav header | ||
var shiftWindow = function() { scrollBy(0, -75) }; | ||
window.addEventListener("hashchange", shiftWindow); | ||
function load() { if (window.location.hash) shiftWindow(); } | ||
</script> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
|
||
|
||
<link rel="shortcut icon" href="//img/favicon.ico"> | ||
<title>My Docs</title> | ||
<link href="/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="/css/font-awesome.min.css" rel="stylesheet"> | ||
<link href="/css/base.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css"> | ||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | ||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> | ||
<![endif]--> | ||
|
||
<script src="/js/jquery.min.js" defer></script> | ||
<script src="/js/bootstrap.min.js" defer></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/http.min.js"></script> | ||
<script>hljs.initHighlightingOnLoad();</script> | ||
</head> | ||
|
||
<body class=""> | ||
|
||
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="/.">My Docs</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample04" aria-controls="navbarsExample04" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
|
||
<div class="collapse navbar-collapse"> | ||
|
||
<ul class="navbar-nav flex-row ml-md-auto d-none d-md-flex"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#" data-toggle="modal" data-target="#mkdocs_search_modal"> | ||
<i class="fa fa-search"></i> Search | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
<div class="row-fluid"> | ||
<div id="main-content" class="span12"> | ||
<h1 id="404-page-not-found" style="text-align: center">404</h1> | ||
<p style="text-align: center"><strong>Page not found</strong></p> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<footer class="col-md-12"> | ||
<hr> | ||
<div class="container"> | ||
</div> | ||
</footer> | ||
<script> | ||
var base_url = "/", | ||
shortcuts = {"help": 191, "next": 78, "previous": 80, "search": 83}; | ||
</script> | ||
<script src="/js/base.js" defer></script> | ||
<script src="/search/main.js" defer></script> | ||
|
||
<div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="Search Modal" aria-hidden="true"> | ||
<div class="modal-dialog modal-lg"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h4 class="modal-title">Search</h4> | ||
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> | ||
</div> | ||
<div class="modal-body"> | ||
<p> | ||
From here you can search these documents. Enter | ||
your search terms below. | ||
</p> | ||
<form role="form"> | ||
<div class="form-group"> | ||
<input type="text" class="form-control" placeholder="Search..." id="mkdocs-search-query" title="Type search term here"> | ||
</div> | ||
</form> | ||
<div id="mkdocs-search-results"></div> | ||
</div> | ||
<div class="modal-footer"> | ||
</div> | ||
</div> | ||
</div> | ||
</div><div class="modal" id="mkdocs_keyboard_modal" tabindex="-1" role="dialog" aria-labelledby="Keyboard Shortcuts Modal" aria-hidden="true"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<p class="h4 modal-title">Keyboard Shortcuts</p> | ||
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> | ||
</div> | ||
<div class="modal-body"> | ||
<table class="table"> | ||
<thead> | ||
<tr> | ||
<th style="width: 20%;">Keys</th> | ||
<th>Action</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td class="help shortcut"><kbd>?</kbd></td> | ||
<td>Open this help</td> | ||
</tr> | ||
<tr> | ||
<td class="next shortcut"><kbd>n</kbd></td> | ||
<td>Next page</td> | ||
</tr> | ||
<tr> | ||
<td class="prev shortcut"><kbd>p</kbd></td> | ||
<td>Previous page</td> | ||
</tr> | ||
<tr> | ||
<td class="search shortcut"><kbd>s</kbd></td> | ||
<td>Search</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
<div class="modal-footer"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
body { | ||
/* padding-top: 70px;*/ | ||
} | ||
.metadata{ | ||
list-style:none; | ||
padding:0; | ||
margin:0; | ||
margin-bottom: 15px; | ||
color: #999; | ||
font-size:0.85em; | ||
} | ||
.last-updated-holder { | ||
float: left; | ||
margin-right: 20px; | ||
} | ||
.metadata.page-metadata .last-updated-text, | ||
.metadata.page-metadata .contributors-text{ | ||
margin-right:5px | ||
} | ||
body[dir=rtl] .metadata.page-metadata .last-updated-text, | ||
body[dir=rtl] .metadata.page-metadata .contributors-text{ | ||
margin-right:0; | ||
margin-left:5px | ||
} | ||
.page-metadata .contributors{ | ||
display:inline-block; | ||
list-style:none; | ||
margin:0!important; | ||
padding:0!important | ||
} | ||
.page-metadata .contributors li{ | ||
display:inline-block; | ||
vertical-align:top; | ||
margin:0; | ||
padding:0 | ||
} | ||
.page-metadata .contributors li img{ | ||
border-radius:100%; | ||
height:16px; | ||
/* margin-top:5px;*/ | ||
margin-top:-3px; | ||
overflow:hidden; | ||
width:16px | ||
} | ||
|
||
#content { | ||
padding-top: 80px; | ||
} | ||
|
||
.has-jumbotron #content { | ||
padding-top: 0px; | ||
} | ||
.jumbotron { | ||
margin-top: 30px; | ||
padding-top: 1.5rem; | ||
padding-bottom: 1rem; | ||
} | ||
.card-deck { | ||
margin-bottom: 20px; | ||
} | ||
.sticky-offset { | ||
top: 75px; | ||
} | ||
|
||
ul.nav li.main { | ||
font-weight: bold; | ||
} | ||
|
||
.dropdown-submenu{ | ||
position: relative; | ||
} | ||
.dropdown-submenu a::after{ | ||
transform: rotate(-90deg); | ||
position: absolute; | ||
right: 3px; | ||
top: 40%; | ||
} | ||
.dropdown-submenu .dropdown-menu { | ||
display: none !important; | ||
} | ||
.dropdown-submenu:hover .dropdown-menu,.dropdown-submenu:focus .dropdown-menu{ | ||
display: flex !important; | ||
flex-direction: column; | ||
position: absolute !important; | ||
margin-top: -30px; | ||
left: 100%; | ||
} | ||
@media (max-width: 992px) { | ||
.dropdown-menu{ | ||
width: 50%; | ||
} | ||
.dropdown-menu .dropdown-submenu{ | ||
width: auto; | ||
} | ||
} | ||
.btn:visited { | ||
color: white; | ||
} | ||
/* | ||
h1[id]:before, h2[id]:before, h3[id]:before, h4[id]:before, h5[id]:before, h6[id]:before { | ||
content: ""; | ||
display: block; | ||
margin-top: -75px; | ||
height: 75px; | ||
} | ||
div.col-md-9 { | ||
padding-bottom: 100px; | ||
} | ||
div.source-links { | ||
float: right; | ||
} | ||
div.col-md-9 img { | ||
max-width: 100%; | ||
} | ||
*/ | ||
|
||
/* | ||
* Side navigation | ||
* | ||
* Scrollspy and affixed enhanced navigation to highlight sections and secondary | ||
* sections of docs content. | ||
*/ | ||
|
||
/* By default it's not affixed in mobile views, so undo that */ | ||
.bs-sidebar.affix { | ||
/* position: static;*/ | ||
} | ||
|
||
.bs-sidebar.well { | ||
padding: 0; | ||
} | ||
|
||
/* First level of nav */ | ||
.bs-sidenav { | ||
margin-top: 0px; | ||
margin-bottom: 0px; | ||
padding-top: 10px; | ||
padding-bottom: 10px; | ||
border-radius: 5px; | ||
} | ||
|
||
/* All levels of nav */ | ||
.bs-sidebar .nav > li > a { | ||
display: block; | ||
padding: 5px 20px; | ||
z-index: 1; | ||
} | ||
.bs-sidebar .nav > li > a:hover, | ||
.bs-sidebar .nav > li > a:focus { | ||
text-decoration: none; | ||
border-right: 1px solid; | ||
} | ||
.bs-sidebar .nav > .active > a, | ||
.bs-sidebar .nav > .active:hover > a, | ||
.bs-sidebar .nav > .active:focus > a { | ||
font-weight: bold; | ||
background-color: transparent; | ||
border-right: 1px solid; | ||
} | ||
|
||
/* Nav: second level (shown on .active) */ | ||
.bs-sidebar .nav .nav { | ||
display: none; /* Hide by default, but at >768px, show it */ | ||
margin-bottom: 8px; | ||
} | ||
.bs-sidebar .nav .nav > li > a { | ||
padding-top: 3px; | ||
padding-bottom: 3px; | ||
padding-left: 30px; | ||
font-size: 90%; | ||
} | ||
|
||
/* Show and affix the side nav when space allows it */ | ||
@media (min-width: 992px) { | ||
.bs-sidebar .nav > .active > ul { | ||
display: block; | ||
} | ||
/* Widen the fixed sidebar */ | ||
.bs-sidebar.affix, | ||
.bs-sidebar.affix-bottom { | ||
width: 213px; | ||
} | ||
.bs-sidebar.affix { | ||
/*position: fixed;*/ /* Undo the static from mobile first approach */ | ||
top: 80px; | ||
} | ||
.bs-sidebar.affix-bottom { | ||
/*position: absolute;*/ /* Undo the static from mobile first approach */ | ||
} | ||
.bs-sidebar.affix-bottom .bs-sidenav, | ||
.bs-sidebar.affix .bs-sidenav { | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
} | ||
} | ||
@media (min-width: 1200px) { | ||
/* Widen the fixed sidebar again */ | ||
.bs-sidebar.affix-bottom, | ||
.bs-sidebar.affix { | ||
width: 263px; | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.