Skip to content

Commit

Permalink
Let's stand out
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed Nov 23, 2023
1 parent 3b9664c commit 8fb1ea1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
10 changes: 10 additions & 0 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@import url('https://rsms.me/inter/inter.css');
@import url('https://assets.hynek.me/css/bm.css');


:root {
font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
:root { font-family: InterVariable, sans-serif; }
}
12 changes: 11 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# directories to ignore when looking for source files.
exclude_patterns = ["_build"]

nitpick_ignore = []
# nitpick_ignore = []

# The reST default role (used for this markup: `text`) to use for all
# documents.
Expand All @@ -66,6 +66,16 @@
# -- Options for HTML output ----------------------------------------------

html_theme = "furo"
html_theme_options = {
"top_of_page_button": None,
"light_css_variables": {
"font-stack": "Inter,sans-serif",
"font-stack--monospace": "BerkeleyMono, MonoLisa, ui-monospace, "
"SFMono-Regular, Menlo, Consolas, Liberation Mono, monospace",
},
}
html_static_path = ["_static"]
html_css_files = ["custom.css"]

# Output file base name for HTML help builder.
htmlhelp_basename = "argon2-cffidoc"
Expand Down

0 comments on commit 8fb1ea1

Please sign in to comment.