-
Notifications
You must be signed in to change notification settings - Fork 17
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
0 parents
commit 7f68388
Showing
68 changed files
with
10,198 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,112 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<title>Page Not Found :: MrDocs</title> | ||
<meta name="generator" content="Antora 3.1.3"> | ||
<link rel="stylesheet" href="/mrdocs/_/css/site.css"> | ||
<link rel="stylesheet" href="/mrdocs/_/css/vendor/tabs.css"> | ||
</head> | ||
<body class="status-404"> | ||
<header class="header"> | ||
<nav class="navbar"> | ||
<div class="navbar-brand"> | ||
<a class="navbar-item" href="https://cppalliance.github.io/mrdocs">MrDocs</a> | ||
<div class="navbar-item search hide-for-print"> | ||
<div id="search-field" class="field"> | ||
<input id="search-input" type="text" placeholder="Search the docs"> | ||
</div> | ||
</div> | ||
<button class="navbar-burger" aria-controls="topbar-nav" aria-expanded="false" aria-label="Toggle main menu"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</button> | ||
</div> | ||
<div id="topbar-nav" class="navbar-menu"> | ||
<div class="navbar-end"> | ||
<a class="navbar-item" href="#">Home</a> | ||
<div class="navbar-item has-dropdown is-hoverable"> | ||
<a class="navbar-link" href="#">Products</a> | ||
<div class="navbar-dropdown"> | ||
<a class="navbar-item" href="#">Product A</a> | ||
<a class="navbar-item" href="#">Product B</a> | ||
<a class="navbar-item" href="#">Product C</a> | ||
</div> | ||
</div> | ||
<div class="navbar-item has-dropdown is-hoverable"> | ||
<a class="navbar-link" href="#">Services</a> | ||
<div class="navbar-dropdown"> | ||
<a class="navbar-item" href="#">Service A</a> | ||
<a class="navbar-item" href="#">Service B</a> | ||
<a class="navbar-item" href="#">Service C</a> | ||
</div> | ||
</div> | ||
<div class="navbar-item"> | ||
<span class="control"> | ||
<a class="button is-primary" href="#">Download</a> | ||
</span> | ||
</div> | ||
</div> | ||
</div> | ||
</nav> | ||
</header> | ||
<div class="body"> | ||
<div class="nav-container"> | ||
<aside class="nav"> | ||
<div class="panels"> | ||
<div class="nav-panel-explore is-active" data-panel="explore"> | ||
<ul class="components"> | ||
<li class="component"> | ||
<div class="title"><a href="/mrdocs/mrdocs/index.html">MrDocs</a></div> | ||
<ul class="versions"> | ||
<li class="version is-latest"> | ||
<a href="/mrdocs/mrdocs/index.html">master</a> | ||
</li> | ||
<li class="version"> | ||
<a href="/mrdocs/mrdocs/develop/index.html">develop</a> | ||
</li> | ||
<li class="version"> | ||
<a href="/mrdocs/mrdocs/v0.0.1/index.html">v0.0.1</a> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</aside> | ||
</div> | ||
<main class="article"> | ||
<div class="toolbar" role="navigation"> | ||
<button class="nav-toggle"></button> | ||
<a href="/mrdocs/mrdocs/index.html" class="home-link"></a> | ||
<nav class="breadcrumbs" aria-label="breadcrumbs"> | ||
</nav> | ||
</div> | ||
<div class="content"> | ||
<article class="doc"> | ||
<h1 class="page">Page Not Found</h1> | ||
<div class="paragraph"> | ||
<p>The page you’re looking for does not exist. It may have been moved. You can return to the <a href="/mrdocs/index.html">start page</a>, or follow one of the links in the navigation to the left.</p> | ||
</div> | ||
<div class="paragraph"> | ||
<p>If you arrived on this page by clicking on a link, please notify the owner of the site that the link is broken. | ||
If you typed the URL of this page manually, please double check that you entered the address correctly.</p> | ||
</div> | ||
</article> | ||
</div> | ||
</main> | ||
</div> | ||
<footer class="footer"> | ||
<p>This page was built using the Antora default UI.</p> | ||
<p>The source code for this UI is licensed under the terms of the MPL-2.0 license.</p> | ||
</footer> | ||
<script id="site-script" src="/mrdocs/_/js/site.js" data-ui-root-path="/mrdocs/_"></script> | ||
<script async src="/mrdocs/_/js/vendor/highlight.js"></script> | ||
<script async src="/mrdocs/_/js/vendor/tabs.js"></script> | ||
<script src="/mrdocs/_/js/vendor/lunr.js"></script> | ||
<script src="/mrdocs/_/js/search-ui.js" id="search-ui-script" data-site-root-path="/mrdocs" data-snippet-length="100" data-stylesheet="/mrdocs/_/css/search.css"></script> | ||
<script async src="/mrdocs/search-index.js"></script> | ||
</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,123 @@ | ||
.search-result-dropdown-menu { | ||
position: absolute; | ||
z-index: 100; | ||
display: block; | ||
right: 0; | ||
left: inherit; | ||
top: 100%; | ||
border-radius: 4px; | ||
margin: 6px 0 0; | ||
padding: 0; | ||
text-align: left; | ||
height: auto; | ||
background: transparent; | ||
border: none; | ||
max-width: 600px; | ||
min-width: 500px; | ||
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2), 0 2px 3px 0 rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
@media screen and (max-width: 768px) { | ||
.search-result-dropdown-menu { | ||
min-width: calc(100vw - 3.75rem); | ||
} | ||
} | ||
|
||
.search-result-dataset { | ||
position: relative; | ||
border: 1px solid #d9d9d9; | ||
background: #fff; | ||
border-radius: 4px; | ||
overflow: auto; | ||
padding: 8px; | ||
max-height: calc(100vh - 5.25rem); | ||
line-height: 1.5; | ||
} | ||
|
||
.search-result-item { | ||
display: flex; | ||
margin-top: 0.5rem; | ||
} | ||
|
||
.search-result-component-header { | ||
color: #1e1e1e; | ||
border-bottom: 1px solid #ddd; | ||
margin-left: 0.5em; | ||
margin-right: 0.5em; | ||
padding-top: 0.25em; | ||
padding-bottom: 0.25em; | ||
} | ||
|
||
.search-result-document-title { | ||
width: 33%; | ||
border-right: 1px solid #ddd; | ||
color: #02060c; | ||
font-weight: 500; | ||
font-size: 0.8rem; | ||
padding: 0.5rem 0.5rem 0.5rem 0; | ||
text-align: right; | ||
position: relative; | ||
word-wrap: break-word; | ||
} | ||
|
||
.search-result-document-hit { | ||
flex: 1; | ||
font-size: 0.75rem; | ||
color: #63676d; | ||
} | ||
|
||
.search-result-document-hit > a { | ||
color: inherit; | ||
display: block; | ||
padding: 0.55rem 0.25rem 0.55rem 0.75rem; | ||
} | ||
|
||
.search-result-document-hit > a:hover { | ||
background-color: rgba(69, 142, 225, 0.05); | ||
} | ||
|
||
.search-result-document-hit .search-result-highlight { | ||
color: #174d8c; | ||
background: rgba(143, 187, 237, 0.1); | ||
padding: 0.1em 0.05em; | ||
font-weight: 500; | ||
} | ||
|
||
.search-result-document-hit .search-result-section-title { | ||
color: #303030; | ||
font-weight: 500; | ||
font-size: 1.05em; | ||
margin-bottom: 0.25em; | ||
} | ||
|
||
#search-input { | ||
padding: 0.25em; | ||
} | ||
|
||
#search-input:focus { | ||
outline: none; | ||
} | ||
|
||
#search-field { | ||
display: flex; | ||
} | ||
|
||
#search-field .filter { | ||
background: #fff linear-gradient(180deg,#e1e1e1 0,#e1e1e1) no-repeat 0/1px 50%; | ||
border: 1px solid #e1e1e1; | ||
border-left: none; | ||
border-radius: 0 0.1em 0.1em 0; | ||
color: #5d5d5d; | ||
cursor: pointer; | ||
font-size: .875em; | ||
display: flex; | ||
align-items: center; | ||
padding: 0 0.5rem; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
} | ||
|
||
#search-field.has-filter > input { | ||
border-right: none; | ||
border-radius: 0.1em 0 0 0.1em; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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,100 @@ | ||
/*! Asciidoctor Tabs | Copyright (c) 2018-present Dan Allen | MIT License */ | ||
.tabs { | ||
margin-bottom: 1.25em; | ||
} | ||
|
||
.tablist > ul { | ||
display: flex; | ||
flex-wrap: wrap; | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.tablist > ul li { | ||
align-items: center; | ||
background-color: #fff; | ||
cursor: pointer; | ||
display: flex; | ||
font-weight: bold; | ||
line-height: 1.5; | ||
padding: 0.25em 1em; | ||
position: relative; | ||
} | ||
|
||
.tablist > ul li:focus-visible { | ||
outline: none; | ||
} | ||
|
||
.tablist.ulist, | ||
.tablist.ulist > ul li { | ||
margin: 0; | ||
} | ||
|
||
.tablist.ulist > ul li + li { | ||
margin-left: 0.25em; | ||
} | ||
|
||
.tabs.is-loading .tablist li:not(:first-child), | ||
.tabs:not(.is-loading) .tablist li:not(.is-selected) { | ||
background-color: #f5f5f5; | ||
} | ||
|
||
.tabs.is-loading .tablist li:first-child::after, | ||
.tabs:not(.is-loading) .tablist li.is-selected::after { | ||
background-color: inherit; | ||
content: ""; | ||
display: block; | ||
height: 3px; /* Chrome doesn't always paint the line accurately, so add a little extra */ | ||
position: absolute; | ||
bottom: -1.5px; | ||
left: 0; | ||
right: 0; | ||
} | ||
|
||
.tablist > ul p { | ||
line-height: inherit; | ||
margin: 0; | ||
} | ||
|
||
.tabpanel { | ||
background-color: #fff; | ||
padding: 1.25em; | ||
} | ||
|
||
.tablist > ul li, | ||
.tabpanel { | ||
border: 1px solid #dcdcdc; | ||
} | ||
|
||
.tablist > ul li { | ||
border-bottom: 0; | ||
} | ||
|
||
.tabs.is-loading .tabpanel + .tabpanel, | ||
.tabs:not(.is-loading) .tabpanel.is-hidden { | ||
display: none; | ||
} | ||
|
||
.tabpanel > :first-child { | ||
margin-top: 0; | ||
} | ||
|
||
/* #content is a signature of the Asciidoctor standalone HTML output */ | ||
#content .tabpanel > :last-child, | ||
#content .tabpanel > :last-child > :last-child, | ||
#content .tabpanel > :last-child > :last-child > li:last-child > :last-child { | ||
margin-bottom: 0; | ||
} | ||
|
||
.tablecontainer { | ||
overflow-x: auto; | ||
} | ||
|
||
#content .tablecontainer { | ||
margin-bottom: 1.25em; | ||
} | ||
|
||
#content .tablecontainer > table.tableblock { | ||
margin-bottom: 0; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.