diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-11-27 16:53:12 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-11-27 16:53:12 +0100 |
commit | 2564fa2882eea3719588a0d7a78d5d8375b0362f (patch) | |
tree | 1c67f19d1eb2929334706a8ec0ef432581b9d5ec /doc/docinfo.html | |
parent | 928ed152eda8ca177a0904c8693c8ffff9b37bdb (diff) | |
download | weechat-2564fa2882eea3719588a0d7a78d5d8375b0362f.zip |
doc: disable web fonts in docs generated by asciidoctor
Diffstat (limited to 'doc/docinfo.html')
-rw-r--r-- | doc/docinfo.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/docinfo.html b/doc/docinfo.html index d6c8dc824..2fc163218 100644 --- a/doc/docinfo.html +++ b/doc/docinfo.html @@ -11,6 +11,7 @@ :root { --body-bg-color: #1a1a1a; --body-color: #ddd; + --body-font: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; --link-color: #8aceff; --table-thead-tfoot: #252525; --th-color: #fff; @@ -39,6 +40,7 @@ :root { --body-bg-color: ##fff; --body-color: #353535; + --body-font: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; --link-color: #1d4b8f; --table-thead-tfoot: #f7f8f7; --th-color: #000; @@ -65,6 +67,7 @@ body { background-color: var(--body-bg-color); color: var(--body-color); + font-family: var(--body-font); } h1 { @@ -75,6 +78,10 @@ h2, h3, h4, h5, h6 { color: var(--color-header2) !important; } +h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { + font-family: var(--body-font); +} + a:link, a:visited, #header .details span.email a { color: var(--link-color); } |