2020-09-03 16:45:38 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
2020-09-25 21:47:11 +02:00
|
|
|
|
<title>Yewprint – Documentation</title>
|
2020-09-03 16:45:38 +02:00
|
|
|
|
<script type="module">
|
2020-09-21 14:09:31 +02:00
|
|
|
|
import init from "/wasm.js";
|
2020-09-03 16:45:38 +02:00
|
|
|
|
init();
|
|
|
|
|
</script>
|
2020-09-25 21:47:11 +02:00
|
|
|
|
<link rel="icon" href="/favicon.svg">
|
2020-09-21 14:09:31 +02:00
|
|
|
|
<link rel="stylesheet" href="/blueprint.css">
|
2020-09-03 18:40:42 +02:00
|
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2020-09-13 18:16:01 +02:00
|
|
|
|
|
|
|
|
|
.bp3-tree {
|
|
|
|
|
width: 350px;
|
|
|
|
|
}
|
2020-09-23 15:59:07 +02:00
|
|
|
|
|
|
|
|
|
.docs-app {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
margin: auto;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
background-color: #f5f8fa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-nav {
|
|
|
|
|
width: 270px;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bp3-dark .docs-nav {
|
|
|
|
|
background-color: #394b59;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-nav-wrapper {
|
|
|
|
|
flex-basis: 270px;
|
|
|
|
|
width: 270px;
|
|
|
|
|
flex-grow: 0;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-nav .bp3-menu {
|
|
|
|
|
background: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-24 18:05:00 +02:00
|
|
|
|
.docs-nav .docs-nav-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-nav .docs-nav-sponsors {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-nav .docs-nav-title .docs-logo {
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-nav .docs-nav-title .docs-heading {
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 15:59:07 +02:00
|
|
|
|
.docs-content-wrapper {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
flex-basis: 830px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-page {
|
|
|
|
|
padding: 0 5px 40px 40px;
|
|
|
|
|
max-width: 830px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-app.bp3-dark {
|
|
|
|
|
background-color: #30404d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-page h1 {
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
font-size: 36px;
|
|
|
|
|
}
|
2020-09-23 18:33:41 +02:00
|
|
|
|
|
|
|
|
|
.docs-example-wrapper .bp3-code-block {
|
2020-09-25 21:47:11 +02:00
|
|
|
|
background-color: #002b36;
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-example-wrapper .bp3-code-block > pre {
|
|
|
|
|
margin: 0;
|
|
|
|
|
white-space: pre-wrap;
|
2020-09-23 18:33:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-example-wrapper .docs-example {
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bp3-dark .docs-example-wrapper .docs-example {
|
|
|
|
|
background-color: #293742;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-example-wrapper > .docs-source > .bp3-button {
|
|
|
|
|
background-color: #ebf1f5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bp3-dark .docs-example-wrapper > .docs-source > .bp3-button {
|
|
|
|
|
background-color: #394b59;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-example-wrapper > .docs-source {
|
|
|
|
|
margin-bottom: 40px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2020-09-03 18:40:42 +02:00
|
|
|
|
</style>
|
2020-09-03 16:45:38 +02:00
|
|
|
|
</head>
|
|
|
|
|
<body></body>
|
|
|
|
|
</html>
|