Skip to content

Commit 56779be

Browse files
committed
deploy: 572a465
0 parents  commit 56779be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+13411
-0
lines changed

.nojekyll

Whitespace-only changes.

docs/404.html

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width,initial-scale=1">
6+
<title>Page Not Found :: MrDocs</title>
7+
<meta name="generator" content="Antora 3.1.3">
8+
<link rel="stylesheet" href="/_/css/site.css">
9+
</head>
10+
<body class="status-404">
11+
<script type="module">import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs'; mermaid.initialize({"startOnLoad":true});</script><header class="header">
12+
<nav class="navbar">
13+
<div class="navbar-brand">
14+
<a class="navbar-item" href="https://www.mrdocs.com">MrDocs</a>
15+
<div class="navbar-item search hide-for-print">
16+
<div id="search-field" class="field">
17+
<input id="search-input" type="text" placeholder="Search the docs">
18+
</div>
19+
</div>
20+
<button class="navbar-burger" aria-controls="topbar-nav" aria-expanded="false" aria-label="Toggle main menu">
21+
<span></span>
22+
<span></span>
23+
<span></span>
24+
</button>
25+
</div>
26+
<div id="topbar-nav" class="navbar-menu">
27+
<div class="navbar-end">
28+
<a class="navbar-item" href="https://www.mrdocs.com">MrDocs</a>
29+
<a class="navbar-item" href="https://cppalliance.org/">The C++ Alliance</a>
30+
<div class="navbar-item">
31+
<span class="control">
32+
<a class="button is-primary" href="https://github.com/cppalliance/mrdocs/releases">Download</a>
33+
</span>
34+
</div>
35+
</div>
36+
</div>
37+
</nav>
38+
</header>
39+
<div class="body">
40+
<div class="nav-container">
41+
<aside class="nav">
42+
<div class="panels">
43+
<div class="nav-panel-explore is-active" data-panel="explore">
44+
<ul class="components">
45+
<li class="component">
46+
<div class="title"><a href="/mrdocs/develop/index.html">MrDocs</a></div>
47+
<ul class="versions">
48+
<li class="version is-latest">
49+
<a href="/mrdocs/develop/index.html">develop</a>
50+
</li>
51+
</ul>
52+
</li>
53+
</ul>
54+
</div>
55+
</div>
56+
</aside>
57+
</div>
58+
<main class="article">
59+
<div class="toolbar" role="navigation">
60+
<button class="nav-toggle"></button>
61+
<a href="/mrdocs/develop/index.html" class="home-link"></a>
62+
<nav class="breadcrumbs" aria-label="breadcrumbs">
63+
</nav>
64+
</div>
65+
<div class="content">
66+
<article class="doc">
67+
<h1 class="page">Page Not Found</h1>
68+
<div class="paragraph">
69+
<p>The page you&#8217;re looking for does not exist. It may have been moved. You can return to the <a href="/mrdocs/develop/index.html">start page</a>, or follow one of the links in the navigation to the left.</p>
70+
</div>
71+
<div class="paragraph">
72+
<p>If you arrived on this page by clicking on a link, please notify the owner of the site that the link is broken.
73+
If you typed the URL of this page manually, please double check that you entered the address correctly.</p>
74+
</div>
75+
</article>
76+
</div>
77+
</main>
78+
</div>
79+
<footer class="footer">
80+
<p>This page was built using the Antora default UI.</p>
81+
<p>The source code for this UI is licensed under the terms of the MPL-2.0 license.</p>
82+
</footer>
83+
<script id="site-script" src="/_/js/site.js" data-ui-root-path="/_"></script>
84+
<script async src="/_/js/vendor/highlight.js"></script>
85+
<script src="/_/js/vendor/lunr.js"></script>
86+
<script src="/_/js/search-ui.js" id="search-ui-script" data-site-root-path="" data-snippet-length="100" data-stylesheet="/_/css/search.css"></script>
87+
<script async src="/search-index.js"></script>
88+
</body>
89+
</html>

docs/_/css/search.css

+123
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
.search-result-dropdown-menu {
2+
position: absolute;
3+
z-index: 100;
4+
display: block;
5+
right: 0;
6+
left: inherit;
7+
top: 100%;
8+
border-radius: 4px;
9+
margin: 6px 0 0;
10+
padding: 0;
11+
text-align: left;
12+
height: auto;
13+
background: transparent;
14+
border: none;
15+
max-width: 600px;
16+
min-width: 500px;
17+
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
18+
}
19+
20+
@media screen and (max-width: 768px) {
21+
.search-result-dropdown-menu {
22+
min-width: calc(100vw - 3.75rem);
23+
}
24+
}
25+
26+
.search-result-dataset {
27+
position: relative;
28+
border: 1px solid #d9d9d9;
29+
background: #fff;
30+
border-radius: 4px;
31+
overflow: auto;
32+
padding: 8px;
33+
max-height: calc(100vh - 5.25rem);
34+
line-height: 1.5;
35+
}
36+
37+
.search-result-item {
38+
display: flex;
39+
margin-top: 0.5rem;
40+
}
41+
42+
.search-result-component-header {
43+
color: #1e1e1e;
44+
border-bottom: 1px solid #ddd;
45+
margin-left: 0.5em;
46+
margin-right: 0.5em;
47+
padding-top: 0.25em;
48+
padding-bottom: 0.25em;
49+
}
50+
51+
.search-result-document-title {
52+
width: 33%;
53+
border-right: 1px solid #ddd;
54+
color: #02060c;
55+
font-weight: 500;
56+
font-size: 0.8rem;
57+
padding: 0.5rem 0.5rem 0.5rem 0;
58+
text-align: right;
59+
position: relative;
60+
word-wrap: break-word;
61+
}
62+
63+
.search-result-document-hit {
64+
flex: 1;
65+
font-size: 0.75rem;
66+
color: #63676d;
67+
}
68+
69+
.search-result-document-hit > a {
70+
color: inherit;
71+
display: block;
72+
padding: 0.55rem 0.25rem 0.55rem 0.75rem;
73+
}
74+
75+
.search-result-document-hit > a:hover {
76+
background-color: rgba(69, 142, 225, 0.05);
77+
}
78+
79+
.search-result-document-hit .search-result-highlight {
80+
color: #174d8c;
81+
background: rgba(143, 187, 237, 0.1);
82+
padding: 0.1em 0.05em;
83+
font-weight: 500;
84+
}
85+
86+
.search-result-document-hit .search-result-section-title {
87+
color: #303030;
88+
font-weight: 500;
89+
font-size: 1.05em;
90+
margin-bottom: 0.25em;
91+
}
92+
93+
#search-input {
94+
padding: 0.25em;
95+
}
96+
97+
#search-input:focus {
98+
outline: none;
99+
}
100+
101+
#search-field {
102+
display: flex;
103+
}
104+
105+
#search-field .filter {
106+
background: #fff linear-gradient(180deg,#e1e1e1 0,#e1e1e1) no-repeat 0/1px 50%;
107+
border: 1px solid #e1e1e1;
108+
border-left: none;
109+
border-radius: 0 0.1em 0.1em 0;
110+
color: #5d5d5d;
111+
cursor: pointer;
112+
font-size: .875em;
113+
display: flex;
114+
align-items: center;
115+
padding: 0 0.5rem;
116+
white-space: nowrap;
117+
overflow: hidden;
118+
}
119+
120+
#search-field.has-filter > input {
121+
border-right: none;
122+
border-radius: 0.1em 0 0 0.1em;
123+
}

docs/_/css/site.css

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
10.1 KB
Binary file not shown.
9.4 KB
Binary file not shown.
10.4 KB
Binary file not shown.
9.61 KB
Binary file not shown.
21.5 KB
Binary file not shown.
17 KB
Binary file not shown.
19.9 KB
Binary file not shown.
15.4 KB
Binary file not shown.
21.6 KB
Binary file not shown.
16.9 KB
Binary file not shown.
20.1 KB
Binary file not shown.
15.5 KB
Binary file not shown.
14.8 KB
Binary file not shown.
Binary file not shown.
15 KB
Binary file not shown.
12.2 KB
Binary file not shown.

docs/_/img/back.svg

+1
Loading

docs/_/img/caret.svg

+1
Loading

docs/_/img/chevron.svg

+1
Loading

docs/_/img/home-o.svg

+1
Loading

docs/_/img/home.svg

+1
Loading

docs/_/img/menu.svg

+1
Loading

docs/_/img/octicons-16.svg

+1
Loading

0 commit comments

Comments
 (0)