1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
h2.doc.doc-heading {
border-top: 1px solid rgba(0, 0, 0, 0.1);
padding-top: 48px;
}
h3 .doc-heading code {
font-size: 16px;
}
.doc-heading code {
font-weight: normal;
font-family: "Roboto Mono", "SFMono-Regular", Consolas, "Courier New", Courier,
monospace;
}
.doc-heading.doc-heading-parameter {
font-size: .65rem;
}
body[data-md-color-primary="black"] .excalidraw svg {
will-change: filter;
filter: invert(100%) hue-rotate(180deg);
}
body[data-md-color-primary="black"] .excalidraw svg rect {
fill: transparent;
}
.excalidraw {
text-align: center;
}
.video-wrapper {
position: relative;
display: block;
height: 0;
padding: 0;
overflow: hidden;
padding-bottom: 56.25%;
}
.video-wrapper > iframe {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
.doc-object code {
font-family: "Fira Code", "SFMono-Regular", Consolas, "Courier New", Courier,
monospace;
}
/* Indentation. */
div.doc-contents:not(.first) {
padding-left: 25px;
border-left: .05rem solid var(--md-typeset-table-color);
}
/* Avoid breaking parameters name, etc. in table cells. */
td code {
word-break: normal !important;
}
.doc-label code {
background: transparent;
opacity: 0.8;
float: right;
}
.doc-function p strong {
opacity: 0.85;
}
.textual-web-demo iframe {
border: none;
width: 100%;
aspect-ratio: 16 / 9;
padding: 0;
margin: 0;
}
.textual-web-demo {
display: flex;
width: 100%;
aspect-ratio: 16 / 9;
padding: 0;
margin: 0;
opacity: 0;
transition: 0.3s opacity;
}
.textual-web-demo.-loaded {
opacity: 1.0;
transition: 0.3s opacity;
}
:root {
--md-admonition-icon--textualize: url('/images/icons/logo light transparent.svg')
}
.md-typeset .admonition.textualize,
.md-typeset details.textualize {
border-color: rgb(43, 155, 70);
}
.md-typeset .textualize > .admonition-title,
.md-typeset .textualize > summary {
background-color: rgba(43, 155, 70, 0.1);
}
.md-typeset .textualize > .admonition-title::before,
.md-typeset .textualize > summary::before {
background-color: rgb(43, 155, 70);
-webkit-mask-image: var(--md-admonition-icon--textualize);
mask-image: var(--md-admonition-icon--textualize);
}
|