File size: 3,041 Bytes
cf86710 | 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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | .markdown {
min-height: calc(100vh - var(--ifm-navbar-height) - 17rem);
--doc-table-min-width: 640px;
}
.markdown a {
text-decoration: underline;
text-underline-offset: 2px;
}
.markdown a[href^="http"] {
position: relative;
display: inline-block;
margin-right: 0.75em;
}
.markdown a[href^="http"]:after {
content: "↗";
font-size: 0.75em;
padding-left: 1px;
top: 0.3em;
text-decoration: none;
position: absolute;
}
.markdown h1:first-child {
font-size: 2.25rem;
letter-spacing: -0.02em;
}
@media (max-width: 996px) {
.markdown h1:first-child {
margin-block-start: 0em;
}
}
.markdown > h2 {
font-size: 1.6rem;
letter-spacing: -0.02em;
padding-top: 1em;
border-top: 1px solid var(--ifm-color-emphasis-200);
}
.markdown > header + h2 {
border-top: 0;
}
.markdown > h3 {
font-size: 1.35rem;
font-weight: 600;
letter-spacing: -0.015em;
}
.markdown > h4 {
font-size: 1.2rem;
font-weight: 600;
letter-spacing: -0.015em;
}
.markdown table {
margin: 2rem 0;
width: 100%;
font-size: 0.875rem;
display: table;
}
.markdown table tr {
border-bottom: 1px solid var(--ifm-table-border-color);
}
.markdown table tr {
background-color: unset;
}
.markdown table tr td code {
white-space: nowrap;
}
.markdown table th {
font-weight: 600;
background-color: unset !important;
text-align: left;
white-space: nowrap;
}
.markdown table thead tr {
border-bottom-width: 1px;
}
@media (max-width: 995px) {
.table-scroll {
margin: 2rem 0;
padding-bottom: 0.5rem;
}
.table-scroll table {
margin: 0;
}
.table-scroll {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.table-scroll table {
min-width: var(--doc-table-min-width);
}
}
.markdown details {
font-size: 0.875rem;
}
.markdown details summary {
font-size: 1rem;
}
.markdown details table {
margin: 0;
}
.markdown details > summary:before {
top: 0.37rem;
}
.markdown div[class^="codeBlockTitle_"] {
padding: .8rem 1rem;
font-size: 0.75rem;
background: var(--ifm-color-emphasis-200);
border-bottom: 0;
}
[data-theme="dark"] .markdown div[class^="codeBlockTitle_"] {
background: var(--ifm-color-emphasis-100);
}
div[class^="codeBlockTitle_"] + div > pre {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.markdown table.no-wrap-table {
display: block;
}
.no-wrap-table th,
.no-wrap-table td {
white-space: nowrap;
}
.no-wrap-table p {
margin: unset;
}
/* Markdown typography refinements */
.markdown :not(pre) > code {
background: var(--ifm-color-emphasis-100);
border: 1px solid var(--ifm-color-emphasis-200);
border-radius: 4px;
padding: 0.1rem 0.3rem;
}
html[data-theme="dark"] .markdown :not(pre) > code {
background: rgba(255, 255, 255, 0.04);
}
.markdown blockquote {
border-left: 3px solid var(--ifm-color-primary);
background: var(--ifm-table-background);
padding: 0.5rem 1rem;
}
.markdown ul[not(.tabs)],
.markdown ol {
margin-block: 0.5rem 1rem;
}
.markdown li {
margin-block: 0.15rem;
}
|