You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.2 KiB
57 lines
1.2 KiB
3 years ago
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||
|
<link
|
||
|
href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap"
|
||
|
rel="stylesheet"
|
||
|
/>
|
||
|
|
||
|
<style>
|
||
|
* {
|
||
|
--blue-500: #037dd6;
|
||
|
--blue-400: #1098fc;
|
||
|
--gray-pre-bg: #f8f8f8;
|
||
|
--font-family-base: Euclid, Roboto, Helvetica, Arial, sans-serif;
|
||
|
--font-family-monospace: Inconsolata, monospace;
|
||
|
--font-size-code: 0.875rem;
|
||
|
--line-height-code: 19px;
|
||
|
--font-size-base: 1rem;
|
||
|
--line-height-base: 1.7;
|
||
|
|
||
|
font-family: var(--font-family-base) !important;
|
||
|
}
|
||
|
|
||
|
h1,
|
||
|
h2 {
|
||
|
font-weight: bold !important;
|
||
|
}
|
||
|
|
||
|
p,
|
||
|
li {
|
||
|
font-size: var(--font-size-base) !important;
|
||
|
line-height: var(--line-height-base) !important;
|
||
|
}
|
||
|
|
||
|
.docblock-source {
|
||
|
background: var(--gray-pre-bg) !important;
|
||
|
}
|
||
|
|
||
|
code {
|
||
|
font-family: var(--font-family-monospace) !important;
|
||
|
font-size: var(--font-size-code) !important;
|
||
|
}
|
||
|
code * {
|
||
|
font-family: var(--font-family-monospace) !important;
|
||
|
font-size: var(--font-size-code) !important;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: var(--blue-500) !important;
|
||
|
}
|
||
|
|
||
|
a:hover,
|
||
|
a:active,
|
||
|
a:focus {
|
||
|
color: var(--blue-400) !important;
|
||
|
}
|
||
|
</style>
|