Skip to content

Commit

Permalink
Doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinche committed Nov 26, 2023
1 parent ab7cb8e commit 6c440c1
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 40 deletions.
44 changes: 5 additions & 39 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
@@ -1,45 +1,11 @@
/* roboto-regular - latin-ext_latin */
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
src: local(""),
url("./fonts/roboto-v30-latin-ext_latin-regular.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("./fonts/roboto-v30-latin-ext_latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@import url('https://rsms.me/inter/inter.css');

/* roboto-italic - latin-ext_latin */
@font-face {
font-family: "Roboto";
font-style: italic;
font-weight: 400;
src: local(""),
url("./fonts/roboto-v30-latin-ext_latin-italic.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("./fonts/roboto-v30-latin-ext_latin-italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
:root {
font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}

/* roboto-700 - latin-ext_latin */
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
src: local(""),
url("./fonts/roboto-v30-latin-ext_latin-700.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("./fonts/roboto-v30-latin-ext_latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-700italic - latin-ext_latin */
@font-face {
font-family: "Roboto";
font-style: italic;
font-weight: 700;
src: local(""),
url("./fonts/roboto-v30-latin-ext_latin-700italic.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("./fonts/roboto-v30-latin-ext_latin-700italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
@supports (font-variation-settings: normal) {
:root { font-family: InterVariable, sans-serif; }
}

/* ubuntu-mono-regular - latin */
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

# The full version, including alpha/beta/rc tags
release = v("uapi")
if "dev" in release:
release = version = "UNRELEASED"


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -56,7 +58,7 @@
html_css_files = ["custom.css"]
html_theme_options = {
"light_css_variables": {
"font-stack": "Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji",
"font-stack": "Inter,sans-serif",
"font-stack--monospace": "'Ubuntu Mono', monospace",
"code-font-size": "90%",
"color-highlight-on-target": "transparent",
Expand All @@ -65,3 +67,5 @@
}

myst_heading_anchors = 3
autodoc_typehints = "description"
autoclass_content = "both"

0 comments on commit 6c440c1

Please sign in to comment.