Update docs for v20.4
This commit is contained in:
parent
c70d2e6d2d
commit
2f829d1b36
27 changed files with 2806 additions and 8551 deletions
22
docs/generated/assets/highlight.css
Normal file
22
docs/generated/assets/highlight.css
Normal file
|
@ -0,0 +1,22 @@
|
|||
:root {
|
||||
--light-code-background: #FFFFFF;
|
||||
--dark-code-background: #1E1E1E;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) { :root {
|
||||
--code-background: var(--light-code-background);
|
||||
} }
|
||||
|
||||
@media (prefers-color-scheme: dark) { :root {
|
||||
--code-background: var(--dark-code-background);
|
||||
} }
|
||||
|
||||
body.light {
|
||||
--code-background: var(--light-code-background);
|
||||
}
|
||||
|
||||
body.dark {
|
||||
--code-background: var(--dark-code-background);
|
||||
}
|
||||
|
||||
pre, code { background: var(--code-background); }
|
Loading…
Add table
Add a link
Reference in a new issue