-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs style overrides and fix notebook rendering
- Loading branch information
Showing
4 changed files
with
64 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
nav: | ||
- index.md | ||
- reference.md | ||
- "Example notebook": examples/client_example.ipynb | ||
- changelog.md | ||
- "Summary": index.md | ||
- "API Reference": reference.md | ||
- "Example notebook": examples/client_example | ||
- "Changelog": changelog.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
div.doc-contents:not(.first) { | ||
padding-left: 25px; | ||
border-left: 4px solid rgba(230, 230, 230, 0.5); | ||
margin-bottom: 80px; | ||
} | ||
|
||
.jupyter-wrapper { | ||
--jp-code-font-family-default: 'Iosevka Web', monospace; | ||
} | ||
|
||
pre { | ||
font-family: 'Iosevka Web', monospace; | ||
} | ||
|
||
td code { | ||
word-break: normal !important; | ||
} | ||
|
||
code { | ||
max-height: 20em; | ||
} | ||
|
||
.md-grid { | ||
max-width: 70rem; | ||
} | ||
|
||
:root { | ||
--md-text-font: "Figtree", sans-serif; | ||
--md-code-font: "Iosevka Web", monospace; | ||
--jp-code-font-family-default: 'Iosevka Web', monospace; | ||
--jp-code-font-family: 'Iosevka Web', monospace; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block extrahead %} | ||
<link href="https://pvinis.github.io/iosevka-webfont/3.4.1/iosevka.css" rel="stylesheet" /> | ||
|
||
<style> | ||
:root { | ||
--jp-code-font-family-default: 'Iosevka Web', monospace; | ||
--md-text-font: "Figtree", sans-serif; | ||
--md-code-font: "Iosevka Web", monospace; | ||
--jp-code-font-family-default: 'Iosevka Web', monospace; | ||
--jp-code-font-family: 'Iosevka Web', monospace; | ||
} | ||
|
||
.jp-OutputArea-output pre { | ||
font-family: 'Iosevka Web', monospace !important; | ||
font-size: 0.8em; | ||
} | ||
|
||
</style> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters