From 42e49b92c49572edb67aa3e0e719c72b7097602e Mon Sep 17 00:00:00 2001 From: Jeroen Koekkoek Date: Mon, 5 Aug 2024 12:19:28 +0200 Subject: [PATCH] Import documentation from nsd-manual repository --- .readthedocs.yaml | 21 + Makefile.in | 50 +- doc/manual/catalog-zones.rst | 213 ++ doc/manual/conf.py.in | 298 ++ doc/manual/configuration.rst | 295 ++ doc/manual/index.rst | 70 + doc/manual/installation.rst | 140 + doc/manual/manpages/nsd-checkconf.rst | 5 + doc/manual/manpages/nsd-checkzone.rst | 5 + doc/manual/manpages/nsd-control.rst | 5 + doc/manual/manpages/nsd.conf.rst | 5 + doc/manual/manpages/nsd.rst | 5 + doc/manual/reference/configure-options.rst | 104 + doc/manual/reference/log-diagnosis.rst | 38 + doc/manual/requirements.txt | 7 + doc/manual/resources/css/dark.css | 3648 ++++++++++++++++++++ doc/manual/resources/css/light.css | 10 + doc/manual/resources/favicon.ico | Bin 0 -> 15086 bytes doc/manual/resources/nsd-duotone-white.png | Bin 0 -> 48782 bytes doc/manual/resources/nsd-duotone-white.svg | 1 + doc/manual/running/interfaces.rst | 28 + doc/manual/running/logging.rst | 27 + doc/manual/running/tuning.rst | 128 + doc/manual/running/using-tsig.rst | 36 + doc/manual/running/zone-expiry.rst | 40 + doc/manual/zonefile.rst | 39 + 26 files changed, 5211 insertions(+), 7 deletions(-) create mode 100644 .readthedocs.yaml create mode 100644 doc/manual/catalog-zones.rst create mode 100644 doc/manual/conf.py.in create mode 100644 doc/manual/configuration.rst create mode 100644 doc/manual/index.rst create mode 100644 doc/manual/installation.rst create mode 100644 doc/manual/manpages/nsd-checkconf.rst create mode 100644 doc/manual/manpages/nsd-checkzone.rst create mode 100644 doc/manual/manpages/nsd-control.rst create mode 100644 doc/manual/manpages/nsd.conf.rst create mode 100644 doc/manual/manpages/nsd.rst create mode 100644 doc/manual/reference/configure-options.rst create mode 100644 doc/manual/reference/log-diagnosis.rst create mode 100644 doc/manual/requirements.txt create mode 100644 doc/manual/resources/css/dark.css create mode 100644 doc/manual/resources/css/light.css create mode 100644 doc/manual/resources/favicon.ico create mode 100644 doc/manual/resources/nsd-duotone-white.png create mode 100644 doc/manual/resources/nsd-duotone-white.svg create mode 100644 doc/manual/running/interfaces.rst create mode 100644 doc/manual/running/logging.rst create mode 100644 doc/manual/running/tuning.rst create mode 100644 doc/manual/running/using-tsig.rst create mode 100644 doc/manual/running/zone-expiry.rst create mode 100644 doc/manual/zonefile.rst diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 000000000..f5fc6c77c --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,21 @@ +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3" + +sphinx: + configuration: source/conf.py + +python: + install: + - requirements: requirements.txt + +# Build PDF & ePub +formats: + - epub + - pdf + +submodules: + include: all diff --git a/Makefile.in b/Makefile.in index 62b6c557c..36ab1cbe5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -31,6 +31,9 @@ user = @user@ DNSTAP_SRC=@DNSTAP_SRC@ DNSTAP_OBJ=@DNSTAP_OBJ@ +SPHINXOPTS = -N -q +SPHINXBUILD = sphinx-build + # override $U variable which is used by autotools for deansification (for # K&R C compilers), but causes problems if $U is defined in the env). U= @@ -54,6 +57,10 @@ YACC = @YACC@ LEX = @LEX@ PROTOC_C = @PROTOC_C@ +DATE != date +'%b %e, %y' +PROJECT = @PACKAGE_NAME@ +VERSION = @PACKAGE_VERSION@ + COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS) LINK = $(CC) $(CFLAGS) $(LDFLAGS) EDIT = $(SED) \ @@ -73,7 +80,10 @@ EDIT = $(SED) \ -e 's,@shell\@,$(SHELL),g' \ -e 's,@ratelimit_default\@,@ratelimit_default@,g' \ -e 's,@dnstap_socket_path\@,@opt_dnstap_socket_path@,g' \ - -e 's,@user\@,$(user),g' + -e 's,@user\@,$(user),g' \ + -e 's/@project\@/$(PROJECT)/g' \ + -e 's/@version\@/$(VERSION)/g' \ + -e 's/@date\@/$(DATE)/g' TARGETS=nsd nsd-checkconf nsd-checkzone nsd-control nsd.conf.sample nsd-control-setup.sh contrib/nsd.openrc contrib/nsd-tmpfiles.conf MANUALS=nsd.8 nsd-checkconf.8 nsd-checkzone.8 nsd-control.8 nsd.conf.5 @@ -87,7 +97,31 @@ NSD_CHECKZONE_OBJ=$(COMMON_OBJ) $(XFRD_OBJ) dbaccess.o dbcreate.o difffile.o ipc NSD_CONTROL_OBJ=$(COMMON_OBJ) nsd-control.o CUTEST_OBJ=$(COMMON_OBJ) $(XFRD_OBJ) dbaccess.o dbcreate.o difffile.o ipc.o mini_event.o netio.o server.o verify.o zonec.o cutest_dname.o cutest_dns.o cutest_iterated_hash.o cutest_run.o cutest_radtree.o cutest_rbtree.o cutest_namedb.o cutest_options.o cutest_region.o cutest_rrl.o cutest_udb.o cutest_util.o cutest_bitset.o cutest_popen3.o cutest_iter.o cutest_event.o cutest.o qtest.o NSD_MEM_OBJ=$(COMMON_OBJ) $(XFRD_OBJ) dbaccess.o dbcreate.o difffile.o ipc.o mini_event.o netio.o verify.o server.o zonec.o nsd-mem.o -all: $(TARGETS) $(MANUALS) + +.PHONY: all html man + +all: $(TARGETS) $(MANUALS) + +doc/manual/conf.py: doc/manual/conf.py.in + $(EDIT) $(srcdir)/doc/manual/conf.py.in > doc/manual/conf.py + +doc/manual/manpages/nsd.conf.5.html: nsd.conf.5 + mandoc -T html -O fragment nsd.conf.5 > doc/manual/manpages/nsd.conf.5.html + +doc/manual/manpages/nsd.8.html: nsd.8 + mandoc -T html -O fragment nsd.8 > doc/manual/manpages/nsd.8.html + +doc/manual/manpages/nsd-checkconf.8.html: nsd-checkconf.8 + mandoc -T html -O fragment nsd-checkconf.8 > doc/manual/manpages/nsd-checkconf.8.html + +doc/manual/manpages/nsd-checkzone.8.html: nsd-checkzone.8 + mandoc -T html -O fragment nsd-checkzone.8 > doc/manual/manpages/nsd-checkzone.8.html + +doc/manual/manpages/nsd-control.8.html: nsd-control.8 + mandoc -T html -O fragment nsd-control.8 > doc/manual/manpages/nsd-control.8.html + +html: doc/manual/conf.py doc/manual/manpages/nsd.conf.5.html doc/manual/manpages/nsd.8.html doc/manual/manpages/nsd-checkconf.8.html doc/manual/manpages/nsd-checkzone.8.html doc/manual/manpages/nsd-control.8.html + $(SPHINXBUILD) -M html $(srcdir)/doc/manual doc/manual $(SPHINXOPTS) $(ALL_OBJ): $(COMPILE) -c $< @@ -101,23 +135,23 @@ nsd.conf.sample: $(srcdir)/nsd.conf.sample.in config.h rm -f nsd.conf.sample $(EDIT) $(srcdir)/nsd.conf.sample.in | $(AWK) '/RRLconfig'@ratelimit@'/ { while($$0 !~ /.*RRLend.*/) { getline; } getline; } {print} ' > nsd.conf.sample -nsd.conf.5: $(srcdir)/nsd.conf.5.in config.h +nsd.conf.5: $(srcdir)/nsd.conf.5.in config.h rm -f nsd.conf.5 $(EDIT) $(srcdir)/nsd.conf.5.in | $(AWK) '/rrlstart'@ratelimit@'/ { while($$0 !~ /.*rrlend.*/) { getline; } getline; } {print} ' > nsd.conf.5 -nsd.8: $(srcdir)/nsd.8.in config.h +nsd.8: $(srcdir)/nsd.8.in config.h rm -f nsd.8 $(EDIT) $(srcdir)/nsd.8.in > nsd.8 -nsd-checkconf.8: $(srcdir)/nsd-checkconf.8.in config.h +nsd-checkconf.8: $(srcdir)/nsd-checkconf.8.in config.h rm -f nsd-checkconf.8 $(EDIT) $(srcdir)/nsd-checkconf.8.in > nsd-checkconf.8 -nsd-checkzone.8: $(srcdir)/nsd-checkzone.8.in config.h +nsd-checkzone.8: $(srcdir)/nsd-checkzone.8.in config.h rm -f nsd-checkzone.8 $(EDIT) $(srcdir)/nsd-checkzone.8.in > nsd-checkzone.8 -nsd-control.8: $(srcdir)/nsd-control.8.in config.h +nsd-control.8: $(srcdir)/nsd-control.8.in config.h rm -f nsd-control.8 $(EDIT) $(srcdir)/nsd-control.8.in > nsd-control.8 @@ -202,6 +236,8 @@ audit: nsd nsd-checkconf nsd-checkzone nsd-control nsd-mem checksec .clean: rm -f *.o $(TARGETS) $(MANUALS) cutest popen3_echo xfr-inspect nsd-mem + rm -f doc/manual/conf.py doc/manual/manpages/nsd.conf.5.html doc/manual/manpages/nsd.8.html doc/manual/manpages/nsd-checkconf.8.html doc/manual/manpages/nsd-checkzone.8.html doc/manual/manpages/nsd-control.8.html + rm -rf doc/manual/doctrees doc/manual/html .distclean: .clean rm -f Makefile config.h config.log config.status dnstap/dnstap_config.h diff --git a/doc/manual/catalog-zones.rst b/doc/manual/catalog-zones.rst new file mode 100644 index 000000000..b8813c08e --- /dev/null +++ b/doc/manual/catalog-zones.rst @@ -0,0 +1,213 @@ +Catalog zones +============= + +Since version 4.9.0, NSD has support for Catalog zones version "2" as specified +in `RFC 9432 `_. NSD can be a producer +of catalog zones as well as a catalog zone consumer, but it is limited to +process only a single consumer zone. + +Setting up NSD as a catalog consumer +------------------------------------ + +NSD will process a zone as a catalog consumer zone if the zone has the +``catalog: consumer`` option set. An example catalog consumer configuration +could look like this: + +.. code:: bash + + pattern: + name: "member-zone-config" + request-xfr: 198.51.100.1 NOKEY + allow-notify: 198.51.100.1 NOKEY + + key: + name: tsig-key.name + algorithm: hmac-sha256 + secret: "SXMgdGhpcyBhIHNlY3JldCBvciBqdXN0IHRleHQ/Pz8=" + + tls-auth: + name: primary.example + auth-domain-name: primary.example + + zone: + name: "catalog1.invalid" + catalog: consumer + catalog-member-pattern: "member-zone-config" + + request-xfr: 192.0.2.1@853 tsig-key.name primary.example + allow-notify: 192.0.2.1 tsig-key.name + + allow-query: BLOCKED + +The consumer zone ``catalog1.invalid`` is configured in the example as a +secondary zone. It transfers the catalog from the primary at ``192.0.2.1``. +The transfer is mutually authenticated :doc:`using TSIG`. + +The content of catalog zones are only relevant for the name servers handling +those zones. They contain a list of zones that are served from the name +servers and it is likely undesirable to expose that content. We have protected +the zone against queries from third-parties by setting the ``allow-query: +BLOCKED`` option. The transfer is protected against on-path eavesdroppers by +doing it over :doc:`authenticated TLS`. + +.. Note:: Using privacy preserving option is RECOMMENDED for catalog zones + (See `RFC 9432 Sections 6 and 7 + `_). + +.. Note:: Catalog consumer zones do not need to be secondary, they may also + process just zone files. + +NSD supports the `group property +`_. Member +zones from the catalog will be added with the pattern given by the group +property of that member. If a member does not have a group property or its +value is invalid or doesn't match a pattern, the pattern given by the +``catalog-member-pattern:`` option will be used. + +Using nsd-control to get catalog zone status +-------------------------------------------- + +The status of catalog zones and catalog member zones can be consulted with +:command:`nsd-control zonestatus`. + +.. code:: bash + + $ nsd-control zonestatus + + zone: catalog1.invalid + catalog: consumer (serial: 1708341939, # members: 2) + state: ok + served-serial: "1708341939 since 2024-02-19T15:19:44" + commit-serial: "1708341939 since 2024-02-19T15:19:44" + wait: "3461 sec between attempts" + + zone: example.net + pattern: member-zone-config + catalog-member-id: a5b75379.zones.catalog1.invalid. + state: ok + served-serial: "2024013019 since 2024-02-19T14:25:43" + commit-serial: "2024013019 since 2024-02-19T14:25:43" + wait: "7195 sec between attempts" + + zone: example.org + pattern: group1 + catalog-member-id: 96143f7d.zones.catalog1.invalid. + state: ok + served-serial: "2024013016 since 2024-02-19T14:18:10" + commit-serial: "2024013016 since 2024-02-19T14:18:10" + wait: "6544 sec between attempts" + +The first ``zone:`` entry in the example output above shows the status our +configured consumer zone ``catalog1.invalid``. Besides its role (``consumer`` +or ``producer``) it show the last SOA serial number that was successfully +processed, and the number of member zones that were added by processing the +consumer zone. + +.. Note:: If the catalog zone has become invalid and isn't processed + anymore, :command:`nsd-control zonestatus` will show the reason why. + +:command:`nsd-control zonestatus` will also show the ``catalog-member-id`` of +catalog member zones. In the example output of :command:`nsd-control +zonestatus` above we can see that ``example.net`` and ``example.org`` are +member zones from ``catalog1.invalid``. Apparently the ``example.net`` member +did not have a valid group property, because it has been added with the default +``catalog-member-pattern:`` ``member-zone-config``. + +Setting up NSD as a catalog producer +------------------------------------ +A catalog producer zone can be configured in NSD by setting the ``catalog: +producer`` option. Unlike consumer zones, multiple producer zones may be +configured. NSD creates the content of producer zones and therefore producer +zones cannot be configured as secondary zones. Likewise, ``zonefile:`` options +are only used to write the zone, never to read it. + +An example catalog producer configuration could look like this: + +.. code:: bash + + server: + interface: 192.0.2.1@853 + tls-port: 853 + tls-service-key: "primary.example.key.pem" + tls-service-pem: "primary.example.cert.pem" + + pattern: + name: "group0" + catalog-producer-zone: "catalog1.invalid" + + pattern: + name: "group1" + catalog-producer-zone: "catalog1.invalid" + + key: + name: tsig-key.name + algorithm: hmac-sha256 + secret: "SXMgdGhpcyBhIHNlY3JldCBvciBqdXN0IHRleHQ/Pz8=" + + zone: + name: "catalog1.invalid" + catalog: producer + + store-ixfr: yes + provide-xfr: 203.0.113.1@853 tsig-key.name + notify: 203.0.113.1 tsig-key.name + + allow-query: BLOCKED + +The producer zone is configured as a primary and allows (in our example) +transfer of the zone over TLS only. Also, just like with the consumer zone +configuration example above, queries to this zone are ``BLOCKED`` to comply +with `RECOMMENDED `_ privacy +and security considerations. We also recommend - for primary zones in general - +to serve *incremental* transfers (configured with ``store-ixfr: yes``). + +Zones can be added as member zones, by adding them to NSD with +:command:`nsd-control addzone` with a pattern that has the name of the producer +zone as value of a ``catalog-producer-zone:`` option. In the example +configuration above, patterns ``"group0"`` and ``"group1"`` both have that +option. + +Here is an example on how to do that: + +.. code:: bash + + $ nsd-control addzone example.net group0 + ok + $ nsd-control addzone example.org group1 + ok + +Like with consumer zones and consumer member zones, :command:`nsd-control +zonestatus` can be used to check on the status of catalog producer zones and +its members: + +.. code:: bash + + $ nsd-control zonestatus + + zone: catalog1.invalid + catalog: producer (serial: 1708341939, # members: 2) + state: primary + + zone: example.net + pattern: group0 + catalog-member-id: a5b75379.zones.catalog1.invalid. + state: primary + + zone: example.org + pattern: group1 + catalog-member-id: 96143f7d.zones.catalog1.invalid. + state: primary + +Like with other zones added with :command:`nsd-control addzone`, the member +zones are persistently added to the zone list file (see the ``zonelistfile:`` +configure option). The content of the catalog producer zone is not persistent +and will be reconstructed from the member zone entries in the zone list file. + +.. code:: bash + + $ cat /var/db/nsd/zone.list + # NSD zone list + # name pattern + cat example.net group0 a5b75379 + cat example.org group1 96143f7d + diff --git a/doc/manual/conf.py.in b/doc/manual/conf.py.in new file mode 100644 index 000000000..ed3126f72 --- /dev/null +++ b/doc/manual/conf.py.in @@ -0,0 +1,298 @@ +# -*- coding: utf-8 -*- +# +# Configuration file for the Sphinx documentation builder. +# +# This file does only contain a selection of the most common options. For a +# full list see the documentation: +# http://www.sphinx-doc.org/en/master/config + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +# import os +# import sys +# sys.path.insert(0, os.path.abspath('.')) + +import os +import datetime +import sphinx_rtd_theme +import requests + +# -- Project information ----------------------------------------------------- + +# PACKAGE_* macros are defined by AC_INIT in configure.ac. + +project = '@project@' +year = datetime.datetime.now().year +copyright = f'2001–{year}, NLnet Labs' +author = 'NLnet Labs' + +# The short X.Y version +version = '@version@' +# The full version, including alpha/beta/rc tags +release = '@version@' + +try: + response_versions = requests.get( + f"https://readthedocs.org/api/v2/version/?project__slug=nsd&active=true", + timeout=2, + ).json() + versions = [ + (version["slug"], f"/{version['project']['language']}/{version['slug']}/") + for version in response_versions["results"] + ] +except Exception: + versions = [] + +# -- General configuration --------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +# +# needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + 'sphinx.ext.todo', + 'sphinx.ext.ifconfig', + 'sphinx_tabs.tabs', + 'sphinx_copybutton', + 'sphinx.ext.intersphinx', + 'sphinx.ext.autosectionlabel', + 'notfound.extension', + 'sphinxcontrib.jquery', + 'sphinx_rtd_theme', +] + +intersphinx_mapping = { + 'nsd': ('https://nsd.docs.nlnetlabs.nl/en/latest/', None) +} + +autosectionlabel_prefix_document = True + +# -- Sphinx Tabs configuration ----------------------------------------------- + +sphinx_tabs_disable_tab_closing = True + +# Add any paths that contain templates here, relative to this directory. +#templates_path = ['../templates'] + +# The suffix(es) of source filenames. +# You can specify multiple suffix as a list of string: +# +# source_suffix = ['.rst', '.md'] +source_suffix = '.rst' + +# The master toctree document. +master_doc = 'index' + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +# +# This is also used if you do content translation via gettext catalogs. +# Usually you set "language" from the command line for these cases. +language = "en" + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path . +exclude_patterns = [] + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = 'sphinx' + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = 'sphinx_rtd_theme' +html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +html_logo = 'resources/nsd-duotone-white.png' +html_favicon = 'resources/favicon.ico' +html_theme_options = { + 'logo_only': True, + 'display_version': True, +} + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +# +# html_theme_options = {} + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['resources'] + +# Custom sidebar templates, must be a dictionary that maps document names +# to template names. +# +# The default sidebars (for documents that don't match any pattern) are +# defined by theme itself. Builtin themes are using these templates by +# default: ``['localtoc.html', 'relations.html', 'sourcelink.html', +# 'searchbox.html']``. +# +# html_sidebars = {} + + +# Set canonical URL from the Read the Docs Domain +html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "") +scheme = "https" + +html_context = { + 'html_theme': html_theme, + 'current_version': version, + 'version_slug': version, + + 'PRODUCTION_DOMAIN': "readthedocs.org", + 'versions': versions, + # "downloads": downloads, + # "subprojects": subprojects, + + 'slug': "nsd", + 'rtd_language': language, + 'canonical_url': html_baseurl, + + 'conf_py_path': "/source/", + + 'github_user': "NLnetLabs", + 'github_repo': "nsd", + 'github_version': os.environ.get("READTHEDOCS_GIT_IDENTIFIER", "main"), + 'display_github': True, + 'READTHEDOCS': True, + 'using_theme': False, + 'new_theme': True, + 'source_suffix': ".rst", + 'docsearch_disabled': False, + } + +# -- Options for HTMLHelp output --------------------------------------------- + +# Output file base name for HTML help builder. +htmlhelp_basename = 'NSDUserManualdoc' + + +# -- Options for LaTeX output ------------------------------------------------ + +latex_elements = { + # The paper size ('letterpaper' or 'a4paper'). + # + # 'papersize': 'letterpaper', + + # The font size ('10pt', '11pt' or '12pt'). + # + # 'pointsize': '10pt', + + # Additional stuff for the LaTeX preamble. + # + # 'preamble': '', + + # Latex figure (float) alignment + # + # 'figure_align': 'htbp', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, +# author, documentclass [howto, manual, or own class]). +latex_documents = [ + (master_doc, 'NSDUserManual.tex', 'NSD User Manual', + 'NLnet Labs', 'manual'), +] + + +# -- Options for manual page output ------------------------------------------ + +# >> we do manpages, but we use mandoc to generate the body for maximum +# compatibility and convenience + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +#man_pages = [ +# ('man/nsd', 'nsd', 'Name Server Daemon (NSD)', +# "NSD was written by NLnet Labs and RIPE NCC joint team. Please see CREDITS file in the distribution for further details.", 8), +# ('man/nsd-checkconf', 'nsd-checkconf', 'NSD configuration file checker.', +# "NSD was written by NLnet Labs and RIPE NCC joint team. Please see CREDITS file in the distribution for further details.", 8), +# ('man/nsd-checkzone', 'nsd-checkzone', 'NSD zone file syntax checker.', +# "NSD was written by NLnet Labs and RIPE NCC joint team. Please see CREDITS file in the distribution for further details.", 8), +# ('man/nsd.conf', 'nsd.conf', 'NSD configuration file.', +# "NSD was written by NLnet Labs and RIPE NCC joint team. Please see CREDITS file in the distribution for further details.", 5), +# ('man/nsd-control', 'nsd-control', 'NSD remote server control utility.', +# "NSD was written by NLnet Labs and RIPE NCC joint team. Please see CREDITS file in the distribution for further details.", 8) +#] +#manpages_url = '{page}.html' + +# -- Options for Texinfo output ---------------------------------------------- + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + (master_doc, 'NSDUserManual', 'NSD User Manual', + author, 'NSDUserManual', 'One line description of project.', + 'Miscellaneous'), +] + + +# -- Options for Epub output ------------------------------------------------- + +# Bibliographic Dublin Core info. +epub_title = project +epub_author = author +epub_publisher = author +epub_copyright = copyright + +# The unique identifier of the text. This can be a ISBN number +# or the project homepage. +# +# epub_identifier = '' + +# A unique identification for the text. +# +# epub_uid = '' + +# A list of files that should not be packed into the epub file. +epub_exclude_files = ['search.html'] + + +# -- Extension configuration ------------------------------------------------- + +# -- Options for todo extension ---------------------------------------------- + +# If true, `todo` and `todoList` produce output, else they produce nothing. +todo_include_todos = True + +# -- Extension interface -------------------------------------------------- +from sphinx import addnodes +def parse_cmd_args_node(env, sig, signode): + try: + cmd, args = sig.strip().split(' ', 1) + except ValueError: + cmd, args = sig, None + # distinguish cmd from its args + signode += addnodes.desc_name(cmd, cmd) + if args: + args = ' ' + args + signode += addnodes.desc_addname(args, args) + return cmd +# define new directive/role that can be used as .. subcmd::/:subcmd: +def setup(app): + app.add_object_type('subcmd', 'subcmd', + objname='module sub-command', + indextemplate='pair: %s; module sub-command', + parse_node=parse_cmd_args_node) + app.add_css_file('css/dark.css') + app.add_css_file('css/light.css') + + +# -- Export variables to be used in RST -------------------------------------- + +rst_epilog = ".. |pidfile| replace:: @pidfile@\n" \ + ".. |configdir| replace:: @configdir@\n" \ + ".. |configfile| replace:: @nsdconfigfile@" diff --git a/doc/manual/configuration.rst b/doc/manual/configuration.rst new file mode 100644 index 000000000..efa1c2799 --- /dev/null +++ b/doc/manual/configuration.rst @@ -0,0 +1,295 @@ +Configuration +============= + +NSD has a vast array of configuration options for advanced use cases. To +configure the application, a ``nsd.conf`` configuration file used. The file +format has attributes and values, and some attributes have attributes inside +them. + +.. Note:: The instructions in this page assume that NSD is already installed. + +The configuration file +---------------------- + + +The configuration NSD uses is specified in the configuration file, which can be supplied to NSD using the :option:`-c` option. In the :doc:`reference` an example ``nsd.conf`` can be found as well as the complete documentation of all the configurable options. The same example and reference can be found on your system using the ``man nsd.conf`` command. + + +The basic rules are of the config file are: + + - The used notation is ``attribute: value`` + - Comments start with ``#`` and extend to the end of a line + - Empty lines are ignored, as is whitespace at the beginning of a line + - Quotes can be used, for names containing spaces, e.g. ``"file name.zone"`` + + +Below we'll give an example config file, which specifies options for the NSD server, zone files, primaries and secondaries. This provide basic config which can be used for as a starting point. + +Note that for the remainder we assume the default location of NSD is ``/etc/nsd`` though this may vary on your system. + +The example configuration below specifies options for the NSD server, zone +files, primaries and secondaries. + +Here is an example config for ``example.com``: + +.. code:: bash + + server: + # use this number of cpu cores + server-count: 1 + # We recommend leaving this empty, otherwise use "/var/db/nsd/nsd.db" + database: "" + # the default file used for the nsd-control addzone and delzone commands + # zonelistfile: "/var/db/nsd/zone.list" + # The unprivileged user that will run NSD, can also be set to "" if + # user privilige protection is not needed + username: nsd + # Default file where all the log messages go + logfile: "/var/log/nsd.log" + # Use this pid file instead of the platform specific default + pidfile: "/var/run/nsd.pid" + # Enable if privilege "jail" is needed for unprivileged user. Note + # that other file paths may break when using chroot + # chroot: "/etc/nsd/" + # The default zone transfer file + # xfrdfile: "/var/db/nsd/xfrd.state" + # The default working directory before accessing zone files + # zonesdir: "/etc/nsd" + + remote-control: + # this allows the use of 'nsd-control' to control NSD. The default is "no" + control-enable: yes + # the interface NSD listens to for nsd-control. The default is 127.0.0.1 + control-interface: 127.0.0.1 + # the key files that allow the use of 'nsd-control'. The default path is "/etc/nsd/". Create these using the 'nsd-control-setup' utility + server-key-file: /etc/nsd/nsd_server.key + server-cert-file: /etc/nsd/nsd_server.pem + control-key-file: /etc/nsd/nsd_control.key + control-cert-file: /etc/nsd/nsd_control.pem + + zone: + name: example.com + zonefile: /etc/nsd/example.com.zone + +We recommend not using the database (so using ``database: ""``) as this is will slow down NSD operation. Depending on your needs, we also recommend keeping the ``server-count`` lower or equal to the number of CPU cores your system has. + +Optionally, you can control NSD (from the same or even a different device) by using the entries under the `remote-control` clause in the config. Using this tool, NSD can be controlled (find the reference of all the options :doc:`here`) which makes controlling NSD much easier. If your install does not come with the keys needed for remote-control use pre-made, you can generate the keys using the :command:`nsd-control-setup` command, which will create them for you. In the section below we will go into more detail about this option. + +You can test the config with :command:`nsd-checkconf`. This tool will tell you what is wrong with the config and where the error occurs. + +If you are happy with the config and any modifications you may have done, you can create the zone to go with the file we mentioned in the config. We show an example zone at :doc:`the zonefile example`. + + +Setting up a secondary zone +--------------------------- + +If your needs go further than just a few zones that are managed locally, NSD has got you covered. We won't go into the theoretical details of primaries and secondaries here (we recommend `this blog `_), but we will show how to configure it. + + +The example for a secondary looks like this: + +.. code:: bash + + zone: + # this server is the primary, 192.0.2.1 is the secondary. + name: primaryzone.com + zonefile: /etc/nsd/primaryone.com.zone + notify: 192.0.2.1 NOKEY # NOKEY for testing purposes only + provide-xfr: 192.0.2.1 NOKEY # NOKEY for testing purposes only + + zone: + # this server is secondary, 192.0.2.2 is primary. + name: secondaryzone.com + zonefile: /etc/nsd/secondaryzone.com.zone + allow-notify: 192.0.2.2 NOKEY # NOKEY for testing purposes only + request-xfr: 192.0.2.2 NOKEY # NOKEY for testing purposes only + +.. note:: + + Note that the ``NOKEY`` keyword above are for testing purposes only, as this can introduce vulnerabilities when used in production environments. + + + +For a secondary zone we list the primaries by IP address. Below is an example +of a secondary zone with two primary servers. If a primary only supports AXFR +transfers and not IXFR transfers (like NSD), specify the primary as +``request-xfr: AXFR ``. By default, all zone transfer requests +are made over TCP. If you want the IXFR request be transmitted over UDP, use +``request-xfr: UDP ``. + +.. code-block:: text + + zone: + name: "example.com" + zonefile: "example.com.zone" + allow-notify: 168.192.185.33 NOKEY + request-xfr: 168.192.185.33 NOKEY + allow-notify: 168.192.199.2 NOKEY + request-xfr: 168.192.199.2 NOKEY + +By default, a secondary will fallback to AXFR requests if the primary told us it +does not support IXFR. You can configure the secondary not to do AXFR fallback +with: + +.. code-block:: text + + allow-axfr-fallback: "no" + +For a primary zone, list the secondary servers, by IP address or subnet. Below +is an example of a primary zone with two secondary servers: + +.. code-block:: text + + zone: + name: "example.com" + zonefile: "example.com.zone" + notify: 168.192.133.75 NOKEY + provide-xfr: 168.192.133.75 NOKEY + notify: 168.192.5.44 NOKEY + provide-xfr: 168.192.5.44 NOKEY + +You also can set the outgoing interface for notifies and zone transfer requests +to satisfy access control lists at the other end: + +.. code-block:: text + + outgoing-interface: 168.192.5.69 + +By default, NSD will retry a notify up to five times. You can override that +value with: + +.. code-block:: text + + notify-retry: 5 + +Zone transfers can be secured with TSIG keys, replace NOKEY with the name of the +TSIG key to use. See :doc:`Using TSIG` for details. + +Since NSD is written to be run on the root name servers, the config file can to +contain something like: + +.. code-block:: text + + zone: + name: "." + zonefile: "root.zone" + provide-xfr: 0.0.0.0/0 NOKEY # allow axfr for everyone. + provide-xfr: ::0/0 NOKEY + +You should only do that if you're intending to run a root server, NSD is not +suited for running a ``.`` cache. Therefore if you choose to serve the ``.`` +zone you have to make sure that the complete root zone is timely and fully +updated. + +To prevent misconfiguration, NSD configure has the +``--enable-root-server`` option, that is by default disabled. + +In the config file, you can use patterns. A pattern can have the same +configuration statements that a zone can have. And then you can +``include-pattern: `` in a zone (or in another pattern) to +apply those settings. This can be used to organise the settings. + + +Remote controlling NSD +---------------------- + +The :command:`nsd-control` tool is also controlled from the ``nsd.conf`` config +file (and it's manpage is found :doc:`here`). It uses TLS encrypted transport to 127.0.0.1, and if you want to use it +you have to setup the keys and also edit the config file. You can leave the +remote-control disabled (the secure default), or opt to turn it on: + +.. code-block:: text + + # generate keys + nsd-control-setup + +.. code-block:: text + + # edit nsd.conf to add this + remote-control: + control-enable: yes + +By default :command:`nsd-control` is limited to localhost, as well as encrypted, +but some people may want to remotely administer their nameserver. To control NSD remotely, configure :command:`nsd-control` to listen to the public IP address with +``control-interface: `` after the control-enable statement. + +Furthermore, you copy the key files :file:`/etc/nsd/nsd_server.pem` +:file:`/etc/nsd/nsd_control.*` to a remote host on the internet; on that host +you can run :command:`nsd-control` with :option:`-c` ```` +which references same IP address ``control-interface`` and references the copies +of the key files with ``server-cert-file``, ``control-key-file`` and +``control-cert-file`` config lines after the ``control-enable`` statement. The +nsd-server authenticates the nsd-control client, and also the +:command:`nsd-control` client authenticates the nsd-server. + + +Starting up the first time +-------------------------- + +When you are done with the configuration file, check the syntax using + +.. code-block:: text + + nsd-checkconf + +The zone files are read by the daemon, which builds :file:`nsd.db` with their +contents. You can start the daemon in a number of ways: + +.. code-block:: text + + nsd -c + nsd-control start # which execs nsd via the remote-control configuration + nsd # which will use the default configuration file + +To check if the daemon is running look with :command:`ps`, :command:`top`, or if +you enabled :command:`nsd-control`: + +.. code-block:: text + + nsd-control status + +To reload changed zone files after you edited them, without stopping the daemon, +use this to check if files are modified: + +.. code-block:: text + + kill -HUP `cat ` + or "nsd-control reload" if you have remote-control enabled + +With :command:`nsd-control` you can also reread the config file, in case of new +zones, etc. + +.. code-block:: text + + nsd-control reconfig + +To restart the daemon: + +.. code-block:: text + + /etc/rc.d/nsd restart # or your system(d) equivalent + +To shut it down (for example on the system shutdown) do: + +.. code-block:: text + + kill -TERM + or nsd-control stop + +NSD will automatically keep track of secondary zones and update them when +needed. When primary zones are updated and reloaded notifications are sent to +secondary servers. + +The zone transfers are applied to :file:`nsd.db` by the daemon. To write +changed contents of the zone files for secondary zones to disk in the text-based +zone file format, issue :command:`nsd-control` write. + +NSD will send notifications to secondary zones if a primary zone is updated. NSD +will check for updates at primary servers periodically and transfer the updated +zone by AXFR/IXFR and reload the new zone contents. + +If you wish exert manual control use :command:`nsd-control notify`, +:command:`transfer` and :command:`force_transfer` commands. The transfer +command will check for new versions of the secondary zones hosted by this NSD. +The notify command will send notifications to the secondary servers configured +in ``notify:`` statements. diff --git a/doc/manual/index.rst b/doc/manual/index.rst new file mode 100644 index 000000000..fefe50f10 --- /dev/null +++ b/doc/manual/index.rst @@ -0,0 +1,70 @@ +Name Server Daemon (NSD) by NLnet Labs +====================================== + +Welcome to the documentation of the NLnet Labs Name Server Daemon (NSD), an +authoritative DNS name server. It has been developed for operations in +environments where speed, reliability, stability and security are of high +importance. + +NSD is designed with a pure philosophy that prioritises raw performance. This +means that if you serve hundreds of thousands or even millions of queries per +second, NSD is the leading implementation in the world. This authoritative DNS +name server strives to be a reference implementation for emerging standards of +the Internet Engineering Task Force (IETF). NSD is distributed free of charge in +open source form under the BSD license. For most platforms, `packages +`_ are available. + +This documentation is an open source project maintained by NLnet Labs. is edited +via text files in the `reStructuredText +`_ markup language and then +compiled into a static website/offline document using the open source `Sphinx +`_ and `ReadTheDocs `_ +tools. + +We always appreciate your feedback and improvements. You can submit an issue or +pull request on the `GitHub repository +`_, or post a message on the +`NSD users `_ mailing +list. All the contents are under the permissive Creative Commons Attribution 3.0 +(`CC-BY 3.0 `_) license, with +attribution to NLnet Labs. + +.. toctree:: + :maxdepth: 2 + :caption: Getting Started + + installation + configuration + zonefile + catalog-zones + +.. toctree:: + :maxdepth: 2 + :caption: Running + + running/logging + running/using-tsig + running/zone-expiry + running/interfaces + running/tuning + +.. toctree:: + :maxdepth: 1 + :caption: Manual Pages + + manpages/nsd + manpages/nsd-checkconf + manpages/nsd-checkzone + manpages/nsd.conf + manpages/nsd-control + +.. toctree:: + :maxdepth: 2 + :caption: Reference + + reference/configure-options + reference/log-diagnosis + +.. history +.. authors +.. license diff --git a/doc/manual/installation.rst b/doc/manual/installation.rst new file mode 100644 index 000000000..2158f32df --- /dev/null +++ b/doc/manual/installation.rst @@ -0,0 +1,140 @@ +Installation +------------ + +To install your own copy of NSD you have two options: use the version provided +by your package manager, or download the source and building it yourself. + +Installing via the `package manager +`_ is the easiest option, and on most +systems even trivial. The downside is the distributed version can be outdated +for some distributions or not have all the compile-time options included that +you want. Building and compiling NSD yourself ensures that you have the latest +version and all the compile-time options you desire. + +Introduction +============ + +NSD consists of two programs: the zone compiler ``zonec`` and the name server +``nsd`` itself. The name server works with an intermediate database prepared by +the zone compiler from standard zone files. + +For NSD operation this means that zones have to be compiled by ``zonec`` before +NSD can use them. All this can be controlled via ``rc.d`` (SIGTERM, SIGHUP) or +:command:`nsd-control`, and uses a simple configuration file ``nsd.conf``. + +Installing with a package manager +================================= + +Most package managers maintain a version of NSD, although this version can be +outdated if this package has not been updated recently. If you like to upgrade +to the latest version, we recommend :ref:`compiling NSD yourself`. + + +Debian/Ubuntu +************* + +Installing NSD with the built-in package manager should be as easy as: + +.. code-block:: bash + + sudo apt update + sudo apt install nsd + +This gives you a compiled and running version of NSD ready to :doc:`be +configured`. + + +Building from source/Compiling +============================== + +Ubuntu 20.04 LTS +************* + +First of all, we need our copy of the NSD code. `On our website +`_ you can find the latest version and +the changelog. In this example we'll use version 4.3.7. Please note that this is not the latest version currently. + +.. code-block:: bash + + wget https://nlnetlabs.nl/downloads/nsd/nsd-4.3.7.tar.gz + tar xzf nsd-4.3.7.tar.gz + + +We'll need some tools, such as a compiler and the :command:`make` program. + +.. code-block:: bash + + sudo apt update + sudo apt install -y build-essential + + +The library components NSD needs are: ``libssl`` and ``libevent``, of which we need +the "dev" version. + +.. code-block:: bash + + sudo apt install -y libssl-dev + sudo apt install -y libevent-dev + + +We'll also need the tools to build the actual program. For this, NSD uses +:command:`make` and internally it uses ``flex`` and ``yacc``, which we need to +download as well. + +.. code-block:: bash + + sudo apt install -y bison + sudo apt install -y flex + + +With all the requirements met, we can now start the compilation process in the +NSD directory. The first step here is configuring. With :option:`./configure +-h` you can look at the extensive list of configurables for NSD. A nice +feature is that :command:`configure` will tell you what it's missing during +configuration. + +.. code-block:: bash + + ./configure + +If :command:`configure` gives no errors, we can continue to actually try compiling +NSD using :command:`make`; compilation might take a while. + +.. code-block:: bash + + make + +After successfully compiling, we can install NSD to make it available for +the machine. + +.. code-block:: bash + + sudo make install + +We now have fully compiled and installed version of NSD, and can continue +to testing it. + + +Testing +======= + +A simple test to determine if the installation was successful is to invoke the +:command:`nsd` command with the :option:`-V` option, which is the "version" +option. This shows the version and build options used and proves installation +was successful. + +.. code-block:: bash + + nsd -v + +If all the previous steps were successful we can continue to configuring our NSD +instance. + +Another handy trick you can use during testing is to run NSD in the foreground +using the :option:`-d` option and increase the verbosity level using the +:option:`-V 3` option. This allows you to see steps NSD takes and also where it +fails. + +Now that NSD is installed we can :doc:`continue to configuring +it`. diff --git a/doc/manual/manpages/nsd-checkconf.rst b/doc/manual/manpages/nsd-checkconf.rst new file mode 100644 index 000000000..eb35c2989 --- /dev/null +++ b/doc/manual/manpages/nsd-checkconf.rst @@ -0,0 +1,5 @@ +nsd-checkconf(8) +================ + +.. raw:: html + :file: nsd-checkconf.8.html diff --git a/doc/manual/manpages/nsd-checkzone.rst b/doc/manual/manpages/nsd-checkzone.rst new file mode 100644 index 000000000..cdaeffcbe --- /dev/null +++ b/doc/manual/manpages/nsd-checkzone.rst @@ -0,0 +1,5 @@ +nsd-checkzone(8) +================ + +.. raw:: html + :file: nsd-checkzone.8.html diff --git a/doc/manual/manpages/nsd-control.rst b/doc/manual/manpages/nsd-control.rst new file mode 100644 index 000000000..58517dd7d --- /dev/null +++ b/doc/manual/manpages/nsd-control.rst @@ -0,0 +1,5 @@ +nsd-control(8) +============== + +.. raw:: html + :file: nsd-control.8.html diff --git a/doc/manual/manpages/nsd.conf.rst b/doc/manual/manpages/nsd.conf.rst new file mode 100644 index 000000000..284621154 --- /dev/null +++ b/doc/manual/manpages/nsd.conf.rst @@ -0,0 +1,5 @@ +nsd.conf(5) +=========== + +.. raw:: html + :file: nsd.conf.5.html diff --git a/doc/manual/manpages/nsd.rst b/doc/manual/manpages/nsd.rst new file mode 100644 index 000000000..590db114d --- /dev/null +++ b/doc/manual/manpages/nsd.rst @@ -0,0 +1,5 @@ +nsd(8) +====== + +.. raw:: html + :file: nsd.8.html diff --git a/doc/manual/reference/configure-options.rst b/doc/manual/reference/configure-options.rst new file mode 100644 index 000000000..4e40ab156 --- /dev/null +++ b/doc/manual/reference/configure-options.rst @@ -0,0 +1,104 @@ +Configure Options +================= + +NSD can be configured using GNU autoconf's configure script. In addition to +standard configure options, one may use the following: + +CC=compiler + Specify the C compiler. The default is gcc or cc. The compiler must support + ANSI C89. + +CPPFLAGS=flags + Specify the C preprocessor flags. Such as ``-I``. + +CFLAGS=flags + Specify the C compiler flags. These include code generation, optimisation, + warning, and debugging flags. These flags are also passed to the linker. + + The default for gcc is ``-g -O2``. + +LD=linker + Specify the linker (defaults to the C compiler). + +LDFLAGS=flags + Specify linker flags. + +LIBS=libs + Specify additional libraries to link with. + +--enable-root-server + Configure NSD as a root server. Unless this option is specified, NSD will + refuse to serve the ``.`` zone as a misconfiguration safeguard. + +--disable-ipv6 + Disables IPv6 support in NSD. + +--enable-checking + Enable some internal development checks. Useful if you want to modify NSD. + This option enables the standard C "assert" macro and compiler warnings. + + This will instruct NSD to be stricter when validating its input. This could + lead to a reduced service level. + +--enable-bind8-stats + Enables BIND8-like statistics. + +--enable-ratelimit + Enables rate limiting, based on query name, type and source. + +--enable-draft-rrtypes + Enables draft RRtypes. + +--with-configdir=dir + Specified, NSD configuration directory, default :file:`/etc/nsd`. + +--with-nsd_conf_file=path + Pathname to the NSD configuration file, default :file:`/etc/nsd/nsd.conf`. + +--with-pidfile=path + Pathname to the NSD pidfile, default is platform specific, mostly + :file:`/var/run/nsd.pid`. + +--with-dbfile=path + Pathname to the NSD database, default is :file:`/etc/nsd/nsd.db`. + +--with-zonesdir=dir + NSD default location for master zone files, default :file:`/etc/nsd/`. + +--with-user=username + User name or ID to answer the queries with, default is ``nsd``. + +--with-facility=facility + Specify the syslog facility to use. The default is LOG_DAEMON. See the + syslog(3) manual page for the available facilities. + +--with-libevent=path + Specity the location of the ``libevent`` library (or libev). + ``--with-libevent=no`` uses a builtin portable implementation (select()). + +--with-ssl=path + Specify the location of the OpenSSL libraries. OpenSSL 0.9.7 or higher is + required for TSIG support. + +--with-start_priority=number + Startup priority for NSD. + +--with-kill_priority=number + Shutdown priority for NSD. + +--with-tcp-timeout=number + Set the default TCP timeout (in seconds). The default is 120 seconds. + +--disable-nsec3 + Disable NSEC3 support. With NSEC3 support enabled, very large zones, also + non-NSEC3 zones, use about 20% more memory. + +--disable-minimal-responses + Disable minimal responses. If disabled, responses are more likely to get + truncated, resulting in TCP fallback. When enabled (by default) NSD will + leave out RRsets to make responses fit inside one datagram, but for shorter + responses the full normal response is carried. + +--disable-largefile + Disable large file support (64 bit file lengths). Makes off_t a 32bit length + during compilation. diff --git a/doc/manual/reference/log-diagnosis.rst b/doc/manual/reference/log-diagnosis.rst new file mode 100644 index 000000000..704189864 --- /dev/null +++ b/doc/manual/reference/log-diagnosis.rst @@ -0,0 +1,38 @@ +Diagnosing NSD Log Entries +========================== + +NSD will print log messages to the system log (or ``logfile:`` configuration +entry). Some of these messages are covered here. + +Reload process failed with status , continuing with old database + This log message indicates the reload process of NSD has failed for some + reason. This can be anything from a missing database file to internal + errors. + +snipping off trailing partial part of + The file :file:`ixfr.db` contains only part of expected data. The corruption + is removed by snipping off the trailing part. + +memory recyclebin holds bytes + This is printed for every reload. NSD allocates and deallocates memory to + service IXFR updates. The recycle bin holds deallocated memory ready for + future use. If the number grows too large, a restart resets it. + +xfrd: max number of tcp connections (32) reached + This line is printed when more than 32 zones need a zone transfer at the + same time. The value is a compile constant (``xfrd-tcp.h``), but if this + happens often for you, we could make this a config option. NSD will reuse + existing TCP connections to the same primary (determined by IP address) to + transfer up to 64k zones from that primary. Thus this error should only + happen with more than 32 primaries or more than 64\*32=2M zones that need to + be updated at the same time. + + If this happens, more zones have to wait until a zone transfer completes + (or is aborted) before they can have a zone transfer too. This waiting + list has no size limit. + +error: NSEC3PARAM entry has unknown hash algo + This error means that the zone has NSEC3 chain(s) with hash algorithms that + are not supported by this version of NSD, and thus cannot be served by NSD. + If there are also no NSECs or NSEC3 chain(s) with known hash algorithms, NSD + will not be able to serve DNSSEC authenticated denials for the zone. \ No newline at end of file diff --git a/doc/manual/requirements.txt b/doc/manual/requirements.txt new file mode 100644 index 000000000..c47fd3be8 --- /dev/null +++ b/doc/manual/requirements.txt @@ -0,0 +1,7 @@ +sphinx==5.0.2 +sphinx-version-warning==1.1.2 +sphinx-tabs==3.4.4 +sphinx-copybutton==0.5.2 +sphinx-rtd-theme +sphinx-notfound-page +requests diff --git a/doc/manual/resources/css/dark.css b/doc/manual/resources/css/dark.css new file mode 100644 index 000000000..82b97485e --- /dev/null +++ b/doc/manual/resources/css/dark.css @@ -0,0 +1,3648 @@ +@media (prefers-color-scheme: dark) { + /* + _______ + / \ + .==. .==. + (( ))==(( )) + / "==" "=="\ + /____|| || ||___\ + ________ ____ ________ ___ ___ + | ___ \ / \ | ___ \ | | / / + | | \ \ / /\ \ | | \ \| |_/ / + | | ) / /__\ \ | |__/ /| ___ \ + | |__/ / ______ \| ____ \| | \ \ + _______|_______/__/ ____ \__\__|___\__\__|___\__\____ + | ___ \ | ____/ / \ | ___ \ | ____| ___ \ + | | \ \| |___ / /\ \ | | \ \| |___| | \ \ + | |__/ /| ____/ /__\ \ | | ) | ____| |__/ / + | ____ \| |__/ ______ \| |__/ /| |___| ____ \ + |__| \__\____/__/ \__\_______/ |______|__| \__\ + https://darkreader.org + */ + + /*! Dark reader generated CSS | Licensed under MIT https://github.com/darkreader/darkreader/blob/master/LICENSE */ + + /* User-Agent Style */ + html { + background-color: #181a1b !important; + } + html, body, input, textarea, select, button { + background-color: #181a1b; + } + html, body, input, textarea, select, button { + border-color: #736b5e; + color: #e8e6e3; + } + a { + color: #3391ff; + } + table { + border-color: #545b5e; + } + ::placeholder { + color: #b2aba1; + } + input:-webkit-autofill, + textarea:-webkit-autofill, + select:-webkit-autofill { + background-color: #555b00 !important; + color: #e8e6e3 !important; + } + ::selection { + background-color: #004daa !important; + color: #e8e6e3 !important; + } + ::-moz-selection { + background-color: #004daa !important; + color: #e8e6e3 !important; + } + pre.man { + font-size: 0.9em; + } + /* Invert Style */ + .jfk-bubble.gtx-bubble, .captcheck_answer_label > input + img, span#closed_text > img[src^="https://www.gstatic.com/images/branding/googlelogo"], span[data-href^="https://www.hcaptcha.com/"] > #icon, #bit-notification-bar-iframe, ::-webkit-calendar-picker-indicator { + filter: invert(100%) hue-rotate(180deg) contrast(90%) !important; + } + + /* Variables Style */ + :root { + --darkreader-neutral-background: #131516; + --darkreader-neutral-text: #d8d4cf; + --darkreader-selection-background: #004daa; + --darkreader-selection-text: #e8e6e3; + } + + /* Modified CSS */ + a:active, + a:hover { + outline-color: initial; + } + abbr[title] { + border-bottom-color: initial; + } + ins { + background-image: initial; + background-color: rgb(112, 112, 0); + text-decoration-color: initial; + } + ins, + mark { + color: rgb(232, 230, 227); + } + mark { + background-image: initial; + background-color: rgb(204, 204, 0); + } + dl, + ol, + ul { + list-style-image: none; + } + li { + list-style-image: initial; + } + img { + border-color: initial; + } + .chromeframe { + background-image: initial; + background-color: rgb(53, 57, 59); + color: rgb(232, 230, 227); + } + .ir { + border-color: initial; + background-color: transparent; + } + .visuallyhidden { + border-color: initial; + } + .fa-border { + border-color: rgb(53, 57, 59); + } + .fa-inverse { + color: rgb(232, 230, 227); + } + .sr-only { + border-color: initial; + } + .fa::before, + .icon::before, + .rst-content .admonition-title::before, + .rst-content .code-block-caption .headerlink::before, + .rst-content .eqno .headerlink::before, + .rst-content code.download span:first-child::before, + .rst-content dl dt .headerlink::before, + .rst-content h1 .headerlink::before, + .rst-content h2 .headerlink::before, + .rst-content h3 .headerlink::before, + .rst-content h4 .headerlink::before, + .rst-content h5 .headerlink::before, + .rst-content h6 .headerlink::before, + .rst-content p.caption .headerlink::before, + .rst-content p .headerlink::before, + .rst-content table > caption .headerlink::before, + .rst-content tt.download span:first-child::before, + .wy-dropdown .caret::before, + .wy-inline-validate.wy-inline-validate-danger .wy-input-context::before, + .wy-inline-validate.wy-inline-validate-info .wy-input-context::before, + .wy-inline-validate.wy-inline-validate-success .wy-input-context::before, + .wy-inline-validate.wy-inline-validate-warning .wy-input-context::before, + .wy-menu-vertical li.current > a button.toctree-expand::before, + .wy-menu-vertical li.on a button.toctree-expand::before, + .wy-menu-vertical li button.toctree-expand::before { + text-decoration-color: inherit; + } + .rst-content .code-block-caption a .headerlink, + .rst-content .eqno a .headerlink, + .rst-content a .admonition-title, + .rst-content code.download a span:first-child, + .rst-content dl dt a .headerlink, + .rst-content h1 a .headerlink, + .rst-content h2 a .headerlink, + .rst-content h3 a .headerlink, + .rst-content h4 a .headerlink, + .rst-content h5 a .headerlink, + .rst-content h6 a .headerlink, + .rst-content p.caption a .headerlink, + .rst-content p a .headerlink, + .rst-content table > caption a .headerlink, + .rst-content tt.download a span:first-child, + .wy-menu-vertical li.current > a button.toctree-expand, + .wy-menu-vertical li.on a button.toctree-expand, + .wy-menu-vertical li a button.toctree-expand, + a .fa, + a .icon, + a .rst-content .admonition-title, + a .rst-content .code-block-caption .headerlink, + a .rst-content .eqno .headerlink, + a .rst-content code.download span:first-child, + a .rst-content dl dt .headerlink, + a .rst-content h1 .headerlink, + a .rst-content h2 .headerlink, + a .rst-content h3 .headerlink, + a .rst-content h4 .headerlink, + a .rst-content h5 .headerlink, + a .rst-content h6 .headerlink, + a .rst-content p.caption .headerlink, + a .rst-content p .headerlink, + a .rst-content table > caption .headerlink, + a .rst-content tt.download span:first-child, + a .wy-menu-vertical li button.toctree-expand { + text-decoration-color: inherit; + } + .rst-content .admonition, + .rst-content .admonition-todo, + .rst-content .attention, + .rst-content .caution, + .rst-content .danger, + .rst-content .error, + .rst-content .hint, + .rst-content .important, + .rst-content .note, + .rst-content .seealso, + .rst-content .tip, + .rst-content .warning, + .wy-alert { + background-image: initial; + background-color: rgb(32, 35, 36); + } + .rst-content .admonition-title, + .wy-alert-title { + color: rgb(232, 230, 227); + background-image: initial; + background-color: rgb(29, 91, 131); + } + .rst-content .danger, + .rst-content .error, + .rst-content .wy-alert-danger.admonition, + .rst-content .wy-alert-danger.admonition-todo, + .rst-content .wy-alert-danger.attention, + .rst-content .wy-alert-danger.caution, + .rst-content .wy-alert-danger.hint, + .rst-content .wy-alert-danger.important, + .rst-content .wy-alert-danger.note, + .rst-content .wy-alert-danger.seealso, + .rst-content .wy-alert-danger.tip, + .rst-content .wy-alert-danger.warning, + .wy-alert.wy-alert-danger { + background-image: initial; + background-color: rgb(52, 12, 8); + } + .rst-content .danger .admonition-title, + .rst-content .danger .wy-alert-title, + .rst-content .error .admonition-title, + .rst-content .error .wy-alert-title, + .rst-content .wy-alert-danger.admonition-todo .admonition-title, + .rst-content .wy-alert-danger.admonition-todo .wy-alert-title, + .rst-content .wy-alert-danger.admonition .admonition-title, + .rst-content .wy-alert-danger.admonition .wy-alert-title, + .rst-content .wy-alert-danger.attention .admonition-title, + .rst-content .wy-alert-danger.attention .wy-alert-title, + .rst-content .wy-alert-danger.caution .admonition-title, + .rst-content .wy-alert-danger.caution .wy-alert-title, + .rst-content .wy-alert-danger.hint .admonition-title, + .rst-content .wy-alert-danger.hint .wy-alert-title, + .rst-content .wy-alert-danger.important .admonition-title, + .rst-content .wy-alert-danger.important .wy-alert-title, + .rst-content .wy-alert-danger.note .admonition-title, + .rst-content .wy-alert-danger.note .wy-alert-title, + .rst-content .wy-alert-danger.seealso .admonition-title, + .rst-content .wy-alert-danger.seealso .wy-alert-title, + .rst-content .wy-alert-danger.tip .admonition-title, + .rst-content .wy-alert-danger.tip .wy-alert-title, + .rst-content .wy-alert-danger.warning .admonition-title, + .rst-content .wy-alert-danger.warning .wy-alert-title, + .rst-content .wy-alert.wy-alert-danger .admonition-title, + .wy-alert.wy-alert-danger .rst-content .admonition-title, + .wy-alert.wy-alert-danger .wy-alert-title { + background-image: initial; + background-color: rgb(108, 22, 13); + } + .rst-content .admonition-todo, + .rst-content .attention, + .rst-content .caution, + .rst-content .warning, + .rst-content .wy-alert-warning.admonition, + .rst-content .wy-alert-warning.danger, + .rst-content .wy-alert-warning.error, + .rst-content .wy-alert-warning.hint, + .rst-content .wy-alert-warning.important, + .rst-content .wy-alert-warning.note, + .rst-content .wy-alert-warning.seealso, + .rst-content .wy-alert-warning.tip, + .wy-alert.wy-alert-warning { + background-image: initial; + background-color: rgb(82, 53, 0); + } + .rst-content .admonition-todo .admonition-title, + .rst-content .admonition-todo .wy-alert-title, + .rst-content .attention .admonition-title, + .rst-content .attention .wy-alert-title, + .rst-content .caution .admonition-title, + .rst-content .caution .wy-alert-title, + .rst-content .warning .admonition-title, + .rst-content .warning .wy-alert-title, + .rst-content .wy-alert-warning.admonition .admonition-title, + .rst-content .wy-alert-warning.admonition .wy-alert-title, + .rst-content .wy-alert-warning.danger .admonition-title, + .rst-content .wy-alert-warning.danger .wy-alert-title, + .rst-content .wy-alert-warning.error .admonition-title, + .rst-content .wy-alert-warning.error .wy-alert-title, + .rst-content .wy-alert-warning.hint .admonition-title, + .rst-content .wy-alert-warning.hint .wy-alert-title, + .rst-content .wy-alert-warning.important .admonition-title, + .rst-content .wy-alert-warning.important .wy-alert-title, + .rst-content .wy-alert-warning.note .admonition-title, + .rst-content .wy-alert-warning.note .wy-alert-title, + .rst-content .wy-alert-warning.seealso .admonition-title, + .rst-content .wy-alert-warning.seealso .wy-alert-title, + .rst-content .wy-alert-warning.tip .admonition-title, + .rst-content .wy-alert-warning.tip .wy-alert-title, + .rst-content .wy-alert.wy-alert-warning .admonition-title, + .wy-alert.wy-alert-warning .rst-content .admonition-title, + .wy-alert.wy-alert-warning .wy-alert-title { + background-image: initial; + background-color: rgb(123, 65, 14); + } + .rst-content .note, + .rst-content .seealso, + .rst-content .wy-alert-info.admonition, + .rst-content .wy-alert-info.admonition-todo, + .rst-content .wy-alert-info.attention, + .rst-content .wy-alert-info.caution, + .rst-content .wy-alert-info.danger, + .rst-content .wy-alert-info.error, + .rst-content .wy-alert-info.hint, + .rst-content .wy-alert-info.important, + .rst-content .wy-alert-info.tip, + .rst-content .wy-alert-info.warning, + .wy-alert.wy-alert-info { + background-image: initial; + background-color: rgb(32, 35, 36); + } + .rst-content .note .admonition-title, + .rst-content .note .wy-alert-title, + .rst-content .seealso .admonition-title, + .rst-content .seealso .wy-alert-title, + .rst-content .wy-alert-info.admonition-todo .admonition-title, + .rst-content .wy-alert-info.admonition-todo .wy-alert-title, + .rst-content .wy-alert-info.admonition .admonition-title, + .rst-content .wy-alert-info.admonition .wy-alert-title, + .rst-content .wy-alert-info.attention .admonition-title, + .rst-content .wy-alert-info.attention .wy-alert-title, + .rst-content .wy-alert-info.caution .admonition-title, + .rst-content .wy-alert-info.caution .wy-alert-title, + .rst-content .wy-alert-info.danger .admonition-title, + .rst-content .wy-alert-info.danger .wy-alert-title, + .rst-content .wy-alert-info.error .admonition-title, + .rst-content .wy-alert-info.error .wy-alert-title, + .rst-content .wy-alert-info.hint .admonition-title, + .rst-content .wy-alert-info.hint .wy-alert-title, + .rst-content .wy-alert-info.important .admonition-title, + .rst-content .wy-alert-info.important .wy-alert-title, + .rst-content .wy-alert-info.tip .admonition-title, + .rst-content .wy-alert-info.tip .wy-alert-title, + .rst-content .wy-alert-info.warning .admonition-title, + .rst-content .wy-alert-info.warning .wy-alert-title, + .rst-content .wy-alert.wy-alert-info .admonition-title, + .wy-alert.wy-alert-info .rst-content .admonition-title, + .wy-alert.wy-alert-info .wy-alert-title { + background-image: initial; + background-color: rgb(29, 91, 131); + } + .rst-content .hint, + .rst-content .important, + .rst-content .tip, + .rst-content .wy-alert-success.admonition, + .rst-content .wy-alert-success.admonition-todo, + .rst-content .wy-alert-success.attention, + .rst-content .wy-alert-success.caution, + .rst-content .wy-alert-success.danger, + .rst-content .wy-alert-success.error, + .rst-content .wy-alert-success.note, + .rst-content .wy-alert-success.seealso, + .rst-content .wy-alert-success.warning, + .wy-alert.wy-alert-success { + background-image: initial; + background-color: rgb(9, 66, 58); + } + .rst-content .hint .admonition-title, + .rst-content .hint .wy-alert-title, + .rst-content .important .admonition-title, + .rst-content .important .wy-alert-title, + .rst-content .tip .admonition-title, + .rst-content .tip .wy-alert-title, + .rst-content .wy-alert-success.admonition-todo .admonition-title, + .rst-content .wy-alert-success.admonition-todo .wy-alert-title, + .rst-content .wy-alert-success.admonition .admonition-title, + .rst-content .wy-alert-success.admonition .wy-alert-title, + .rst-content .wy-alert-success.attention .admonition-title, + .rst-content .wy-alert-success.attention .wy-alert-title, + .rst-content .wy-alert-success.caution .admonition-title, + .rst-content .wy-alert-success.caution .wy-alert-title, + .rst-content .wy-alert-success.danger .admonition-title, + .rst-content .wy-alert-success.danger .wy-alert-title, + .rst-content .wy-alert-success.error .admonition-title, + .rst-content .wy-alert-success.error .wy-alert-title, + .rst-content .wy-alert-success.note .admonition-title, + .rst-content .wy-alert-success.note .wy-alert-title, + .rst-content .wy-alert-success.seealso .admonition-title, + .rst-content .wy-alert-success.seealso .wy-alert-title, + .rst-content .wy-alert-success.warning .admonition-title, + .rst-content .wy-alert-success.warning .wy-alert-title, + .rst-content .wy-alert.wy-alert-success .admonition-title, + .wy-alert.wy-alert-success .rst-content .admonition-title, + .wy-alert.wy-alert-success .wy-alert-title { + background-image: initial; + background-color: rgb(21, 150, 125); + } + .rst-content .wy-alert-neutral.admonition, + .rst-content .wy-alert-neutral.admonition-todo, + .rst-content .wy-alert-neutral.attention, + .rst-content .wy-alert-neutral.caution, + .rst-content .wy-alert-neutral.danger, + .rst-content .wy-alert-neutral.error, + .rst-content .wy-alert-neutral.hint, + .rst-content .wy-alert-neutral.important, + .rst-content .wy-alert-neutral.note, + .rst-content .wy-alert-neutral.seealso, + .rst-content .wy-alert-neutral.tip, + .rst-content .wy-alert-neutral.warning, + .wy-alert.wy-alert-neutral { + background-image: initial; + background-color: rgb(27, 36, 36); + } + .rst-content .wy-alert-neutral.admonition-todo .admonition-title, + .rst-content .wy-alert-neutral.admonition-todo .wy-alert-title, + .rst-content .wy-alert-neutral.admonition .admonition-title, + .rst-content .wy-alert-neutral.admonition .wy-alert-title, + .rst-content .wy-alert-neutral.attention .admonition-title, + .rst-content .wy-alert-neutral.attention .wy-alert-title, + .rst-content .wy-alert-neutral.caution .admonition-title, + .rst-content .wy-alert-neutral.caution .wy-alert-title, + .rst-content .wy-alert-neutral.danger .admonition-title, + .rst-content .wy-alert-neutral.danger .wy-alert-title, + .rst-content .wy-alert-neutral.error .admonition-title, + .rst-content .wy-alert-neutral.error .wy-alert-title, + .rst-content .wy-alert-neutral.hint .admonition-title, + .rst-content .wy-alert-neutral.hint .wy-alert-title, + .rst-content .wy-alert-neutral.important .admonition-title, + .rst-content .wy-alert-neutral.important .wy-alert-title, + .rst-content .wy-alert-neutral.note .admonition-title, + .rst-content .wy-alert-neutral.note .wy-alert-title, + .rst-content .wy-alert-neutral.seealso .admonition-title, + .rst-content .wy-alert-neutral.seealso .wy-alert-title, + .rst-content .wy-alert-neutral.tip .admonition-title, + .rst-content .wy-alert-neutral.tip .wy-alert-title, + .rst-content .wy-alert-neutral.warning .admonition-title, + .rst-content .wy-alert-neutral.warning .wy-alert-title, + .rst-content .wy-alert.wy-alert-neutral .admonition-title, + .wy-alert.wy-alert-neutral .rst-content .admonition-title, + .wy-alert.wy-alert-neutral .wy-alert-title { + color: rgb(192, 186, 178); + background-image: initial; + background-color: rgb(40, 43, 45); + } + .rst-content .wy-alert-neutral.admonition-todo a, + .rst-content .wy-alert-neutral.admonition a, + .rst-content .wy-alert-neutral.attention a, + .rst-content .wy-alert-neutral.caution a, + .rst-content .wy-alert-neutral.danger a, + .rst-content .wy-alert-neutral.error a, + .rst-content .wy-alert-neutral.hint a, + .rst-content .wy-alert-neutral.important a, + .rst-content .wy-alert-neutral.note a, + .rst-content .wy-alert-neutral.seealso a, + .rst-content .wy-alert-neutral.tip a, + .rst-content .wy-alert-neutral.warning a, + .wy-alert.wy-alert-neutral a { + color: rgb(84, 164, 217); + } + .wy-tray-container li { + background-image: initial; + background-color: transparent; + color: rgb(232, 230, 227); + box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 0px; + } + .wy-tray-container li.wy-tray-item-success { + background-image: initial; + background-color: rgb(31, 139, 77); + } + .wy-tray-container li.wy-tray-item-info { + background-image: initial; + background-color: rgb(33, 102, 148); + } + .wy-tray-container li.wy-tray-item-warning { + background-image: initial; + background-color: rgb(178, 94, 20); + } + .wy-tray-container li.wy-tray-item-danger { + background-image: initial; + background-color: rgb(162, 33, 20); + } + .btn { + color: rgb(232, 230, 227); + border-color: rgba(140, 130, 115, 0.1); + background-color: rgb(31, 139, 77); + text-decoration-color: initial; + box-shadow: rgba(24, 26, 27, 0.5) 0px 1px 2px -1px inset, + rgba(0, 0, 0, 0.1) 0px -2px 0px 0px inset; + } + .btn-hover { + background-image: initial; + background-color: rgb(37, 114, 165); + color: rgb(232, 230, 227); + } + .btn:hover { + background-image: initial; + background-color: rgb(35, 156, 86); + color: rgb(232, 230, 227); + } + .btn:focus { + background-image: initial; + background-color: rgb(35, 156, 86); + outline-color: initial; + } + .btn:active { + box-shadow: rgba(0, 0, 0, 0.05) 0px -1px 0px 0px inset, + rgba(0, 0, 0, 0.1) 0px 2px 0px 0px inset; + } + .btn:visited { + color: rgb(232, 230, 227); + } + .btn-disabled, + .btn-disabled:active, + .btn-disabled:focus, + .btn-disabled:hover, + .btn:disabled { + background-image: none; + box-shadow: none; + } + .btn-info { + background-color: rgb(33, 102, 148) !important; + } + .btn-info:hover { + background-color: rgb(37, 114, 165) !important; + } + .btn-neutral { + background-color: rgb(27, 36, 36) !important; + color: rgb(192, 186, 178) !important; + } + .btn-neutral:hover { + color: rgb(192, 186, 178); + background-color: rgb(34, 44, 44) !important; + } + .btn-neutral:visited { + color: rgb(192, 186, 178) !important; + } + .btn-success { + background-color: rgb(31, 139, 77) !important; + } + .btn-success:hover { + background-color: rgb(27, 122, 68) !important; + } + .btn-danger { + background-color: rgb(162, 33, 20) !important; + } + .btn-danger:hover { + background-color: rgb(149, 30, 18) !important; + } + .btn-warning { + background-color: rgb(178, 94, 20) !important; + } + .btn-warning:hover { + background-color: rgb(165, 87, 18) !important; + } + .btn-invert { + background-color: rgb(26, 28, 29); + } + .btn-invert:hover { + background-color: rgb(35, 38, 40) !important; + } + .btn-link { + color: rgb(84, 164, 217); + box-shadow: none; + background-color: transparent !important; + border-color: transparent !important; + } + .btn-link:active, + .btn-link:hover { + box-shadow: none; + background-color: transparent !important; + color: rgb(79, 162, 216) !important; + } + .btn-link:visited { + color: rgb(164, 103, 188); + } + .wy-dropdown-menu { + background-image: initial; + background-color: rgb(26, 28, 29); + border-color: rgb(60, 65, 67); + box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 2px 0px; + } + .wy-dropdown-menu > dd > a { + color: rgb(192, 186, 178); + } + .wy-dropdown-menu > dd > a:hover { + background-image: initial; + background-color: rgb(33, 102, 148); + color: rgb(232, 230, 227); + } + .wy-dropdown-menu > dd.divider { + border-top-color: rgb(60, 65, 67); + } + .wy-dropdown-menu > dd.call-to-action { + background-image: initial; + background-color: rgb(40, 43, 45); + } + .wy-dropdown-menu > dd.call-to-action:hover { + background-image: initial; + background-color: rgb(40, 43, 45); + } + .wy-dropdown-menu > dd.call-to-action .btn { + color: rgb(232, 230, 227); + } + .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu { + background-image: initial; + background-color: rgb(26, 28, 29); + } + .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover { + background-image: initial; + background-color: rgb(33, 102, 148); + color: rgb(232, 230, 227); + } + .wy-dropdown-arrow::before { + border-bottom-color: rgb(51, 55, 57); + border-left-color: transparent; + border-right-color: transparent; + } + fieldset, + legend { + border-color: initial; + } + label { + color: rgb(200, 195, 188); + } + .wy-control-group.wy-control-group-required > label::after { + color: rgb(233, 88, 73); + } + .wy-form-message-inline { + color: rgb(168, 160, 149); + } + .wy-form-message { + color: rgb(168, 160, 149); + } + input[type="color"], input[type="date"], input[type="datetime-local"], input[type="datetime"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"] { + border-color: rgb(62, 68, 70); + box-shadow: rgb(43, 47, 49) 0px 1px 3px inset; + } + input[type="color"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, input[type="datetime"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus { + outline-color: initial; + border-color: rgb(123, 114, 101); + } + input.no-focus:focus { + border-color: rgb(62, 68, 70) !important; + } + input[type="checkbox"]:focus, input[type="file"]:focus, input[type="radio"]:focus { + outline-color: rgb(13, 113, 167); + } + input[type="color"][disabled], input[type="date"][disabled], input[type="datetime-local"][disabled], input[type="datetime"][disabled], input[type="email"][disabled], input[type="month"][disabled], input[type="number"][disabled], input[type="password"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="text"][disabled], input[type="time"][disabled], input[type="url"][disabled], input[type="week"][disabled] { + background-color: rgb(27, 29, 30); + } + input:focus:invalid, + select:focus:invalid, + textarea:focus:invalid { + color: rgb(233, 88, 73); + border-color: rgb(149, 31, 18); + } + input:focus:invalid:focus, + select:focus:invalid:focus, + textarea:focus:invalid:focus { + border-color: rgb(149, 31, 18); + } + input[type="checkbox"]:focus:invalid:focus, input[type="file"]:focus:invalid:focus, input[type="radio"]:focus:invalid:focus { + outline-color: rgb(149, 31, 18); + } + select, + textarea { + border-color: rgb(62, 68, 70); + box-shadow: rgb(43, 47, 49) 0px 1px 3px inset; + } + select { + border-color: rgb(62, 68, 70); + background-color: rgb(24, 26, 27); + } + select:focus, + textarea:focus { + outline-color: initial; + } + input[readonly], + select[disabled], + select[readonly], + textarea[disabled], + textarea[readonly] { + background-color: rgb(27, 29, 30); + } + .wy-checkbox, + .wy-radio { + color: rgb(192, 186, 178); + } + .wy-input-prefix .wy-input-context, + .wy-input-suffix .wy-input-context { + background-color: rgb(27, 36, 36); + border-color: rgb(62, 68, 70); + color: rgb(168, 160, 149); + } + .wy-input-suffix .wy-input-context { + border-left-color: initial; + } + .wy-input-prefix .wy-input-context { + border-right-color: initial; + } + .wy-switch::before { + background-image: initial; + background-color: rgb(53, 57, 59); + } + .wy-switch::after { + background-image: initial; + background-color: rgb(82, 88, 92); + } + .wy-switch span { + color: rgb(200, 195, 188); + } + .wy-switch.active::before { + background-image: initial; + background-color: rgb(24, 106, 58); + } + .wy-switch.active::after { + background-image: initial; + background-color: rgb(31, 139, 77); + } + .wy-control-group.wy-control-group-error .wy-form-message, + .wy-control-group.wy-control-group-error > label { + color: rgb(233, 88, 73); + } + .wy-control-group.wy-control-group-error input[type="color"], .wy-control-group.wy-control-group-error input[type="date"], .wy-control-group.wy-control-group-error input[type="datetime-local"], .wy-control-group.wy-control-group-error input[type="datetime"], .wy-control-group.wy-control-group-error input[type="email"], .wy-control-group.wy-control-group-error input[type="month"], .wy-control-group.wy-control-group-error input[type="number"], .wy-control-group.wy-control-group-error input[type="password"], .wy-control-group.wy-control-group-error input[type="search"], .wy-control-group.wy-control-group-error input[type="tel"], .wy-control-group.wy-control-group-error input[type="text"], .wy-control-group.wy-control-group-error input[type="time"], .wy-control-group.wy-control-group-error input[type="url"], .wy-control-group.wy-control-group-error input[type="week"], + .wy-control-group.wy-control-group-error textarea { + border-color: rgb(149, 31, 18); + } + .wy-inline-validate.wy-inline-validate-success .wy-input-context { + color: rgb(92, 218, 145); + } + .wy-inline-validate.wy-inline-validate-danger .wy-input-context { + color: rgb(233, 88, 73); + } + .wy-inline-validate.wy-inline-validate-warning .wy-input-context { + color: rgb(232, 138, 54); + } + .wy-inline-validate.wy-inline-validate-info .wy-input-context { + color: rgb(84, 164, 217); + } + .rst-content table.docutils caption, + .rst-content table.field-list caption, + .wy-table caption { + color: rgb(232, 230, 227); + } + .rst-content table.docutils thead, + .rst-content table.field-list thead, + .wy-table thead { + color: rgb(232, 230, 227); + } + .rst-content table.docutils thead th, + .rst-content table.field-list thead th, + .wy-table thead th { + border-bottom-color: rgb(56, 61, 63); + } + .rst-content table.docutils td, + .rst-content table.field-list td, + .wy-table td { + background-color: transparent; + } + .wy-table-secondary { + color: rgb(152, 143, 129); + } + .wy-table-tertiary { + color: rgb(152, 143, 129); + } + .rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td, + .wy-table-backed, + .wy-table-odd td, + .wy-table-striped tr:nth-child(2n-1) td { + background-color: rgb(27, 36, 36); + } + .rst-content table.docutils, + .wy-table-bordered-all { + border-color: rgb(56, 61, 63); + } + .rst-content table.docutils td, + .wy-table-bordered-all td { + border-bottom-color: rgb(56, 61, 63); + border-left-color: rgb(56, 61, 63); + } + .wy-table-bordered { + border-color: rgb(56, 61, 63); + } + .wy-table-bordered-rows td { + border-bottom-color: rgb(56, 61, 63); + } + .wy-table-horizontal td, + .wy-table-horizontal th { + border-bottom-color: rgb(56, 61, 63); + } + a { + color: rgb(84, 164, 217); + text-decoration-color: initial; + } + a:hover { + color: rgb(68, 156, 214); + } + a:visited { + color: rgb(164, 103, 188); + } + body { + color: rgb(192, 186, 178); + background-image: initial; + background-color: rgb(33, 35, 37); + } + .wy-text-strike { + text-decoration-color: initial; + } + .wy-text-warning { + color: rgb(232, 138, 54) !important; + } + a.wy-text-warning:hover { + color: rgb(236, 157, 87) !important; + } + .wy-text-info { + color: rgb(84, 164, 217) !important; + } + a.wy-text-info:hover { + color: rgb(79, 162, 216) !important; + } + .wy-text-success { + color: rgb(92, 218, 145) !important; + } + a.wy-text-success:hover { + color: rgb(73, 214, 133) !important; + } + .wy-text-danger { + color: rgb(233, 88, 73) !important; + } + a.wy-text-danger:hover { + color: rgb(237, 118, 104) !important; + } + .wy-text-neutral { + color: rgb(192, 186, 178) !important; + } + a.wy-text-neutral:hover { + color: rgb(176, 169, 159) !important; + } + hr { + border-right-color: initial; + border-bottom-color: initial; + border-left-color: initial; + border-top-color: rgb(56, 61, 63); + } + .rst-content code, + .rst-content tt, + code { + background-image: initial; + background-color: rgb(24, 26, 27); + border-color: rgb(56, 61, 63); + color: rgb(233, 88, 73); + } + .rst-content .section ul, + .rst-content .toctree-wrapper ul, + .rst-content section ul, + .wy-plain-list-disc, + article ul { + list-style-image: initial; + } + .rst-content .section ul li, + .rst-content .toctree-wrapper ul li, + .rst-content section ul li, + .wy-plain-list-disc li, + article ul li { + list-style-image: initial; + } + .rst-content .section ul li li, + .rst-content .toctree-wrapper ul li li, + .rst-content section ul li li, + .wy-plain-list-disc li li, + article ul li li { + list-style-image: initial; + } + .rst-content .section ul li li li, + .rst-content .toctree-wrapper ul li li li, + .rst-content section ul li li li, + .wy-plain-list-disc li li li, + article ul li li li { + list-style-image: initial; + } + .rst-content .section ul li ol li, + .rst-content .toctree-wrapper ul li ol li, + .rst-content section ul li ol li, + .wy-plain-list-disc li ol li, + article ul li ol li { + list-style-image: initial; + } + .rst-content .section ol, + .rst-content .section ol.arabic, + .rst-content .toctree-wrapper ol, + .rst-content .toctree-wrapper ol.arabic, + .rst-content section ol, + .rst-content section ol.arabic, + .wy-plain-list-decimal, + article ol { + list-style-image: initial; + } + .rst-content .section ol.arabic li, + .rst-content .section ol li, + .rst-content .toctree-wrapper ol.arabic li, + .rst-content .toctree-wrapper ol li, + .rst-content section ol.arabic li, + .rst-content section ol li, + .wy-plain-list-decimal li, + article ol li { + list-style-image: initial; + } + .rst-content .section ol.arabic li ul li, + .rst-content .section ol li ul li, + .rst-content .toctree-wrapper ol.arabic li ul li, + .rst-content .toctree-wrapper ol li ul li, + .rst-content section ol.arabic li ul li, + .rst-content section ol li ul li, + .wy-plain-list-decimal li ul li, + article ol li ul li { + list-style-image: initial; + } + .rst-content .wy-breadcrumbs li tt, + .wy-breadcrumbs li .rst-content tt, + .wy-breadcrumbs li code { + border-color: initial; + background-image: none; + background-color: initial; + } + .rst-content .wy-breadcrumbs li tt.literal, + .wy-breadcrumbs li .rst-content tt.literal, + .wy-breadcrumbs li code.literal { + color: rgb(192, 186, 178); + } + .wy-breadcrumbs-extra { + color: rgb(184, 178, 169); + } + .wy-menu a:hover { + text-decoration-color: initial; + } + .wy-menu-horiz li:hover { + background-image: initial; + background-color: rgba(24, 26, 27, 0.1); + } + .wy-menu-horiz li.divide-left { + border-left-color: rgb(119, 110, 98); + } + .wy-menu-horiz li.divide-right { + border-right-color: rgb(119, 110, 98); + } + .wy-menu-vertical header, + .wy-menu-vertical p.caption { + color: rgb(94, 170, 219); + } + .wy-menu-vertical li.divide-top { + border-top-color: rgb(119, 110, 98); + } + .wy-menu-vertical li.divide-bottom { + border-bottom-color: rgb(119, 110, 98); + } + .wy-menu-vertical li.current { + background-image: initial; + background-color: rgb(40, 43, 45); + } + .wy-menu-vertical li.current a { + color: rgb(152, 143, 129); + border-right-color: rgb(63, 69, 71); + } + .wy-menu-vertical li.current a:hover { + background-image: initial; + background-color: rgb(47, 51, 53); + } + .rst-content .wy-menu-vertical li tt, + .wy-menu-vertical li .rst-content tt, + .wy-menu-vertical li code { + border-color: initial; + background-image: inherit; + background-color: inherit; + color: inherit; + } + .wy-menu-vertical li button.toctree-expand { + color: rgb(183, 177, 168); + border-color: initial; + background-image: none; + background-color: initial; + } + .wy-menu-vertical li.current > a, + .wy-menu-vertical li.on a { + color: rgb(192, 186, 178); + background-image: initial; + background-color: rgb(26, 28, 29); + border-color: initial; + } + .wy-menu-vertical li.current > a:hover, + .wy-menu-vertical li.on a:hover { + background-image: initial; + background-color: rgb(26, 28, 29); + } + .wy-menu-vertical li.current > a:hover button.toctree-expand, + .wy-menu-vertical li.on a:hover button.toctree-expand { + color: rgb(152, 143, 129); + } + .wy-menu-vertical li.current > a button.toctree-expand, + .wy-menu-vertical li.on a button.toctree-expand { + color: rgb(200, 195, 188); + } + .wy-menu-vertical li.toctree-l1.current > a { + border-bottom-color: rgb(63, 69, 71); + border-top-color: rgb(63, 69, 71); + } + .wy-menu-vertical li.toctree-l2 a, + .wy-menu-vertical li.toctree-l3 a, + .wy-menu-vertical li.toctree-l4 a, + .wy-menu-vertical li.toctree-l5 a, + .wy-menu-vertical li.toctree-l6 a, + .wy-menu-vertical li.toctree-l7 a, + .wy-menu-vertical li.toctree-l8 a, + .wy-menu-vertical li.toctree-l9 a, + .wy-menu-vertical li.toctree-l10 a { + color: rgb(192, 186, 178); + } + .wy-menu-vertical li.toctree-l2 a:hover button.toctree-expand, + .wy-menu-vertical li.toctree-l3 a:hover button.toctree-expand, + .wy-menu-vertical li.toctree-l4 a:hover button.toctree-expand, + .wy-menu-vertical li.toctree-l5 a:hover button.toctree-expand, + .wy-menu-vertical li.toctree-l6 a:hover button.toctree-expand, + .wy-menu-vertical li.toctree-l7 a:hover button.toctree-expand, + .wy-menu-vertical li.toctree-l8 a:hover button.toctree-expand, + .wy-menu-vertical li.toctree-l9 a:hover button.toctree-expand, + .wy-menu-vertical li.toctree-l10 a:hover button.toctree-expand { + color: rgb(152, 143, 129); + } + .wy-menu-vertical li.toctree-l2.current > a, + .wy-menu-vertical li.toctree-l2.current li.toctree-l3 > a { + background-image: initial; + background-color: rgb(54, 59, 61); + } + .wy-menu-vertical li.toctree-l2 button.toctree-expand { + color: rgb(174, 167, 156); + } + .wy-menu-vertical li.toctree-l3.current > a, + .wy-menu-vertical li.toctree-l3.current li.toctree-l4 > a { + background-image: initial; + background-color: rgb(61, 66, 69); + } + .wy-menu-vertical li.toctree-l3 button.toctree-expand { + color: rgb(166, 158, 146); + } + .wy-menu-vertical li ul li a { + color: rgb(208, 204, 198); + } + .wy-menu-vertical a { + color: rgb(208, 204, 198); + } + .wy-menu-vertical a:hover { + background-color: rgb(57, 62, 64); + } + .wy-menu-vertical a:hover button.toctree-expand { + color: rgb(208, 204, 198); + } + .wy-menu-vertical a:active { + background-color: rgb(33, 102, 148); + color: rgb(232, 230, 227); + } + .wy-menu-vertical a:active button.toctree-expand { + color: rgb(232, 230, 227); + } + .wy-side-nav-search { + background-color: rgb(33, 102, 148); + color: rgb(230, 228, 225); + } + .wy-side-nav-search input[type="text"] { + border-color: rgb(35, 111, 160); + } + .wy-side-nav-search img { + background-color: rgb(33, 102, 148); + } + .wy-side-nav-search .wy-dropdown > a, + .wy-side-nav-search > a { + color: rgb(230, 228, 225); + } + .wy-side-nav-search .wy-dropdown > a:hover, + .wy-side-nav-search > a:hover { + background-image: initial; + background-color: rgba(24, 26, 27, 0.1); + } + .wy-side-nav-search .wy-dropdown > a img.logo, + .wy-side-nav-search > a img.logo { + background-image: initial; + background-color: transparent; + } + .wy-side-nav-search > div.version { + color: rgba(232, 230, 227, 0.3); + } + .wy-nav .wy-menu-vertical header { + color: rgb(84, 164, 217); + } + .wy-nav .wy-menu-vertical a { + color: rgb(184, 178, 169); + } + .wy-nav .wy-menu-vertical a:hover { + background-color: rgb(33, 102, 148); + color: rgb(232, 230, 227); + } + .wy-body-for-nav { + background-image: initial; + background-color: rgb(26, 28, 29); + } + .wy-nav-side { + color: rgb(169, 161, 150); + background-image: initial; + background-color: rgb(38, 41, 43); + } + .wy-nav-top { + background-image: initial; + background-color: rgb(33, 102, 148); + color: rgb(232, 230, 227); + } + .wy-nav-top a { + color: rgb(232, 230, 227); + } + .wy-nav-top img { + background-color: rgb(33, 102, 148); + } + .wy-nav-content-wrap { + background-image: initial; + background-color: rgb(26, 28, 29); + } + .wy-body-mask { + background-image: initial; + background-color: rgba(0, 0, 0, 0.2); + } + footer { + color: rgb(152, 143, 129); + } + .rst-content footer span.commit tt, + footer span.commit .rst-content tt, + footer span.commit code { + background-image: none; + background-color: initial; + border-color: initial; + color: rgb(152, 143, 129); + } + #search-results .search li { + border-bottom-color: rgb(56, 61, 63); + } + #search-results .search li:first-child { + border-top-color: rgb(56, 61, 63); + } + #search-results .context { + color: rgb(152, 143, 129); + } + @media screen and (max-width: 768px) { + .wy-body-for-nav { + background-image: initial; + background-color: rgb(26, 28, 29); + } + } + @media screen and (min-width: 1100px) { + .wy-nav-content-wrap { + background-image: initial; + background-color: rgba(0, 0, 0, 0.05); + } + .wy-nav-content { + background-image: initial; + background-color: rgb(26, 28, 29); + } + } + .rst-versions { + color: rgb(230, 228, 225); + background-image: initial; + background-color: rgb(23, 24, 25); + } + .rst-versions a { + color: rgb(84, 164, 217); + text-decoration-color: initial; + } + .rst-versions .rst-current-version { + background-color: rgb(29, 31, 32); + color: rgb(92, 218, 145); + } + .rst-content .code-block-caption .rst-versions .rst-current-version .headerlink, + .rst-content .eqno .rst-versions .rst-current-version .headerlink, + .rst-content .rst-versions .rst-current-version .admonition-title, + .rst-content code.download .rst-versions .rst-current-version span:first-child, + .rst-content dl dt .rst-versions .rst-current-version .headerlink, + .rst-content h1 .rst-versions .rst-current-version .headerlink, + .rst-content h2 .rst-versions .rst-current-version .headerlink, + .rst-content h3 .rst-versions .rst-current-version .headerlink, + .rst-content h4 .rst-versions .rst-current-version .headerlink, + .rst-content h5 .rst-versions .rst-current-version .headerlink, + .rst-content h6 .rst-versions .rst-current-version .headerlink, + .rst-content p .rst-versions .rst-current-version .headerlink, + .rst-content table > caption .rst-versions .rst-current-version .headerlink, + .rst-content tt.download .rst-versions .rst-current-version span:first-child, + .rst-versions .rst-current-version .fa, + .rst-versions .rst-current-version .icon, + .rst-versions .rst-current-version .rst-content .admonition-title, + .rst-versions .rst-current-version .rst-content .code-block-caption .headerlink, + .rst-versions .rst-current-version .rst-content .eqno .headerlink, + .rst-versions .rst-current-version .rst-content code.download span:first-child, + .rst-versions .rst-current-version .rst-content dl dt .headerlink, + .rst-versions .rst-current-version .rst-content h1 .headerlink, + .rst-versions .rst-current-version .rst-content h2 .headerlink, + .rst-versions .rst-current-version .rst-content h3 .headerlink, + .rst-versions .rst-current-version .rst-content h4 .headerlink, + .rst-versions .rst-current-version .rst-content h5 .headerlink, + .rst-versions .rst-current-version .rst-content h6 .headerlink, + .rst-versions .rst-current-version .rst-content p .headerlink, + .rst-versions .rst-current-version .rst-content table > caption .headerlink, + .rst-versions .rst-current-version .rst-content tt.download span:first-child, + .rst-versions .rst-current-version .wy-menu-vertical li button.toctree-expand, + .wy-menu-vertical li .rst-versions .rst-current-version button.toctree-expand { + color: rgb(230, 228, 225); + } + .rst-versions .rst-current-version.rst-out-of-date { + background-color: rgb(162, 33, 20); + color: rgb(232, 230, 227); + } + .rst-versions .rst-current-version.rst-active-old-version { + background-color: rgb(192, 156, 11); + color: rgb(232, 230, 227); + } + .rst-versions .rst-other-versions { + color: rgb(152, 143, 129); + } + .rst-versions .rst-other-versions hr { + border-right-color: initial; + border-bottom-color: initial; + border-left-color: initial; + border-top-color: rgb(119, 111, 98); + } + .rst-versions .rst-other-versions dd a { + color: rgb(230, 228, 225); + } + .rst-versions.rst-badge { + border-color: initial; + } + .rst-content abbr[title] { + text-decoration-color: initial; + } + .rst-content.style-external-links a.reference.external::after { + color: rgb(184, 178, 169); + } + .rst-content div[class^="highlight"], + .rst-content pre.literal-block { + border-color: rgb(56, 61, 63); + } + .rst-content div[class^="highlight"] div[class^="highlight"], .rst-content pre.literal-block div[class^="highlight"] { + border-color: initial; + } + .rst-content .linenodiv pre { + border-right-color: rgb(54, 59, 61); + } + .rst-content div.highlight span.linenos { + border-right-color: rgb(54, 59, 61); + } + .rst-content .admonition table { + border-color: rgba(140, 130, 115, 0.1); + } + .rst-content .admonition table td, + .rst-content .admonition table th { + background-image: initial !important; + background-color: transparent !important; + border-color: rgba(140, 130, 115, 0.1) !important; + } + .rst-content .section ol.loweralpha, + .rst-content .section ol.loweralpha > li, + .rst-content .toctree-wrapper ol.loweralpha, + .rst-content .toctree-wrapper ol.loweralpha > li, + .rst-content section ol.loweralpha, + .rst-content section ol.loweralpha > li { + list-style-image: initial; + } + .rst-content .section ol.upperalpha, + .rst-content .section ol.upperalpha > li, + .rst-content .toctree-wrapper ol.upperalpha, + .rst-content .toctree-wrapper ol.upperalpha > li, + .rst-content section ol.upperalpha, + .rst-content section ol.upperalpha > li { + list-style-image: initial; + } + .rst-content .toc-backref { + color: rgb(192, 186, 178); + } + .rst-content .btn:focus { + outline-color: initial; + } + .rst-content .sidebar { + background-image: initial; + background-color: rgb(27, 36, 36); + border-color: rgb(56, 61, 63); + } + .rst-content .sidebar .sidebar-title { + background-image: initial; + background-color: rgb(40, 43, 45); + } + .rst-content .highlighted { + background-image: initial; + background-color: rgb(192, 156, 11); + box-shadow: rgb(192, 156, 11) 0px 0px 0px 2px; + } + html.writer-html4 .rst-content table.docutils.citation, + html.writer-html4 .rst-content table.docutils.footnote { + background-image: none; + background-color: initial; + border-color: initial; + } + html.writer-html4 .rst-content table.docutils.citation td, + html.writer-html4 .rst-content table.docutils.citation tr, + html.writer-html4 .rst-content table.docutils.footnote td, + html.writer-html4 .rst-content table.docutils.footnote tr { + border-color: initial; + background-color: transparent !important; + } + .rst-content table.docutils.footnote, + html.writer-html4 .rst-content table.docutils.citation, + html.writer-html5 .rst-content dl.footnote { + color: rgb(152, 143, 129); + } + .rst-content table.docutils.footnote code, + .rst-content table.docutils.footnote tt, + html.writer-html4 .rst-content table.docutils.citation code, + html.writer-html4 .rst-content table.docutils.citation tt, + html.writer-html5 .rst-content dl.footnote code, + html.writer-html5 .rst-content dl.footnote tt { + color: rgb(178, 172, 162); + } + .rst-content table.docutils th { + border-color: rgb(56, 61, 63); + } + html.writer-html5 .rst-content table.docutils th { + border-color: rgb(56, 61, 63); + } + .rst-content table.field-list, + .rst-content table.field-list td { + border-color: initial; + } + .rst-content code, + .rst-content tt { + color: rgb(232, 230, 227); + } + .rst-content code.literal, + .rst-content tt.literal { + color: rgb(233, 88, 73); + } + .rst-content code.xref, + .rst-content tt.xref, + a .rst-content code, + a .rst-content tt { + color: rgb(192, 186, 178); + } + .rst-content a code, + .rst-content a tt { + color: rgb(84, 164, 217); + } + html.writer-html4 .rst-content dl:not(.docutils) > dt, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) > dt { + background-image: initial; + background-color: rgb(32, 35, 36); + color: rgb(84, 164, 217); + border-top-color: rgb(28, 89, 128); + } + html.writer-html4 .rst-content dl:not(.docutils) > dt::before, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) > dt::before { + color: rgb(109, 178, 223); + } + html.writer-html4 .rst-content dl:not(.docutils) > dt .headerlink, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) > dt .headerlink { + color: rgb(192, 186, 178); + } + html.writer-html4 .rst-content dl:not(.docutils) dl:not(.field-list) > dt, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dl:not(.field-list) > dt { + border-top-color: initial; + border-right-color: initial; + border-bottom-color: initial; + border-left-color: rgb(62, 68, 70); + background-image: initial; + background-color: rgb(32, 35, 37); + color: rgb(178, 172, 162); + } + html.writer-html4 .rst-content dl:not(.docutils) dl:not(.field-list) > dt .headerlink, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dl:not(.field-list) > dt .headerlink { + color: rgb(192, 186, 178); + } + html.writer-html4 .rst-content dl:not(.docutils) code.descclassname, + html.writer-html4 .rst-content dl:not(.docutils) code.descname, + html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname, + html.writer-html4 .rst-content dl:not(.docutils) tt.descname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descclassname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descclassname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descname { + background-color: transparent; + border-color: initial; + } + html.writer-html4 .rst-content dl:not(.docutils) .optional, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .optional { + color: rgb(232, 230, 227); + } + html.writer-html4 .rst-content dl:not(.docutils) .descclassname, + html.writer-html4 .rst-content dl:not(.docutils) .descname, + html.writer-html4 .rst-content dl:not(.docutils) .sig-name, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .descclassname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .descname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .sig-name { + color: rgb(232, 230, 227); + } + .rst-content .viewcode-back, + .rst-content .viewcode-link { + color: rgb(92, 218, 145); + } + .rst-content code.download, + .rst-content tt.download { + background-image: inherit; + background-color: inherit; + color: inherit; + border-color: inherit; + } + .rst-content .guilabel { + border-color: rgb(27, 84, 122); + background-image: initial; + background-color: rgb(32, 35, 36); + } + span[id*="MathJax-Span"] { + color: rgb(192, 186, 178); + } + td.linenos .normal { + color: inherit; + background-color: transparent; + } + span.linenos { + color: inherit; + background-color: transparent; + } + td.linenos .special { + color: rgb(232, 230, 227); + background-color: rgb(89, 89, 0); + } + span.linenos.special { + color: rgb(232, 230, 227); + background-color: rgb(89, 89, 0); + } + .highlight .hll { + background-color: rgb(82, 82, 0); + } + .highlight { + background-image: initial; + background-color: rgb(61, 82, 0); + } + .highlight .c { + color: rgb(119, 179, 195); + } + .highlight .err { + border-color: rgb(179, 0, 0); + } + .highlight .k { + color: rgb(126, 255, 163); + } + .highlight .o { + color: rgb(168, 160, 149); + } + .highlight .ch { + color: rgb(119, 179, 195); + } + .highlight .cm { + color: rgb(119, 179, 195); + } + .highlight .cp { + color: rgb(126, 255, 163); + } + .highlight .cpf { + color: rgb(119, 179, 195); + } + .highlight .c1 { + color: rgb(119, 179, 195); + } + .highlight .cs { + color: rgb(119, 179, 195); + background-color: rgb(60, 0, 0); + } + .highlight .gd { + color: rgb(255, 92, 92); + } + .highlight .gr { + color: rgb(255, 26, 26); + } + .highlight .gh { + color: rgb(127, 174, 255); + } + .highlight .gi { + color: rgb(92, 255, 92); + } + .highlight .go { + color: rgb(200, 195, 188); + } + .highlight .gp { + color: rgb(246, 147, 68); + } + .highlight .gu { + color: rgb(255, 114, 255); + } + .highlight .gt { + color: rgb(71, 160, 255); + } + .highlight .kc { + color: rgb(126, 255, 163); + } + .highlight .kd { + color: rgb(126, 255, 163); + } + .highlight .kn { + color: rgb(126, 255, 163); + } + .highlight .kp { + color: rgb(126, 255, 163); + } + .highlight .kr { + color: rgb(126, 255, 163); + } + .highlight .kt { + color: rgb(255, 137, 103); + } + .highlight .m { + color: rgb(125, 222, 174); + } + .highlight .s { + color: rgb(123, 166, 202); + } + .highlight .na { + color: rgb(123, 166, 202); + } + .highlight .nb { + color: rgb(126, 255, 163); + } + .highlight .nc { + color: rgb(81, 194, 242); + } + .highlight .no { + color: rgb(103, 177, 215); + } + .highlight .nd { + color: rgb(178, 172, 162); + } + .highlight .ni { + color: rgb(217, 100, 73); + } + .highlight .ne { + color: rgb(126, 255, 163); + } + .highlight .nf { + color: rgb(131, 186, 249); + } + .highlight .nl { + color: rgb(137, 193, 255); + } + .highlight .nn { + color: rgb(81, 194, 242); + } + .highlight .nt { + color: rgb(138, 191, 249); + } + .highlight .nv { + color: rgb(190, 103, 215); + } + .highlight .ow { + color: rgb(126, 255, 163); + } + .highlight .w { + color: rgb(189, 183, 175); + } + .highlight .mb { + color: rgb(125, 222, 174); + } + .highlight .mf { + color: rgb(125, 222, 174); + } + .highlight .mh { + color: rgb(125, 222, 174); + } + .highlight .mi { + color: rgb(125, 222, 174); + } + .highlight .mo { + color: rgb(125, 222, 174); + } + .highlight .sa { + color: rgb(123, 166, 202); + } + .highlight .sb { + color: rgb(123, 166, 202); + } + .highlight .sc { + color: rgb(123, 166, 202); + } + .highlight .dl { + color: rgb(123, 166, 202); + } + .highlight .sd { + color: rgb(123, 166, 202); + } + .highlight .s2 { + color: rgb(123, 166, 202); + } + .highlight .se { + color: rgb(123, 166, 202); + } + .highlight .sh { + color: rgb(123, 166, 202); + } + .highlight .si { + color: rgb(117, 168, 209); + } + .highlight .sx { + color: rgb(246, 147, 68); + } + .highlight .sr { + color: rgb(133, 182, 224); + } + .highlight .s1 { + color: rgb(123, 166, 202); + } + .highlight .ss { + color: rgb(188, 230, 128); + } + .highlight .bp { + color: rgb(126, 255, 163); + } + .highlight .fm { + color: rgb(131, 186, 249); + } + .highlight .vc { + color: rgb(190, 103, 215); + } + .highlight .vg { + color: rgb(190, 103, 215); + } + .highlight .vi { + color: rgb(190, 103, 215); + } + .highlight .vm { + color: rgb(190, 103, 215); + } + .highlight .il { + color: rgb(125, 222, 174); + } + [role="tablist"] { + border-bottom-color: rgb(70, 76, 79); + } + .sphinx-tabs-tab { + color: rgb(119, 182, 226); + background-color: rgba(24, 26, 27, 0); border-color: initial; + } + .sphinx-tabs-tab[aria-selected="true"] { + border-color: rgb(70, 76, 79) rgb(70, 76, 79) rgb(48, 52, 54); + background-color: rgb(24, 26, 27); + } + .sphinx-tabs-panel { + border-right-color: rgb(70, 76, 79); + border-bottom-color: rgb(70, 76, 79); + border-left-color: rgb(70, 76, 79); + border-top-color: initial; + background-image: initial; + background-color: rgb(24, 26, 27); + } + a.copybtn { + border-color: initial; + } + .o-tooltip--left::after { + background-image: initial; + background-color: rgb(96, 104, 108); + color: rgb(232, 230, 227); + } + @media (prefers-color-scheme: dark) { + html { + background-color: rgb(19, 21, 22) !important; + } + html, + body, + input, + textarea, + select, + button { + background-color: rgb(19, 21, 22); + } + html, + body, + input, + textarea, + select, + button { + border-color: rgb(106, 98, 87); + color: rgb(216, 212, 207); + } + a { + color: rgb(61, 165, 255); + } + table { + border-color: rgb(111, 103, 91); + } + ::placeholder { + color: rgb(178, 171, 161); + } + input:-webkit-autofill, + textarea:-webkit-autofill, + select:-webkit-autofill { + background-color: rgb(68, 73, 0) !important; + color: rgb(216, 212, 207) !important; + } + ::selection { + background-color: rgb(0, 62, 136) !important; + color: rgb(216, 212, 207) !important; + } + :root { + --darkreader-neutral-background: #131516; + --darkreader-text--darkreader-neutral-text: #cdc8c2; + --darkreader-selection-background: #004daa; + --darkreader-selection-text: #e8e6e3; + } + a:active, + a:hover { + outline-color: initial; + } + abbr[title] { + border-bottom-color: initial; + } + ins { + background-image: initial; + background-color: rgb(90, 90, 0); + text-decoration-color: initial; + } + ins, + mark { + color: rgb(216, 212, 207); + } + mark { + background-image: initial; + background-color: rgb(163, 163, 0); + } + dl, + ol, + ul { + list-style-image: none; + } + li { + list-style-image: initial; + } + img { + border-color: initial; + } + .chromeframe { + background-image: initial; + background-color: rgb(42, 46, 47); + color: rgb(216, 212, 207); + } + .ir { + border-color: initial; + background-color: transparent; + } + .visuallyhidden { + border-color: initial; + } + .fa-border { + border-color: rgb(122, 113, 100); + } + .fa-inverse { + color: rgb(216, 212, 207); + } + .sr-only { + border-color: initial; + } + .fa::before, + .icon::before, + .rst-content .admonition-title::before, + .rst-content .code-block-caption .headerlink::before, + .rst-content code.download span:first-child::before, + .rst-content dl dt .headerlink::before, + .rst-content h1 .headerlink::before, + .rst-content h2 .headerlink::before, + .rst-content h3 .headerlink::before, + .rst-content h4 .headerlink::before, + .rst-content h5 .headerlink::before, + .rst-content h6 .headerlink::before, + .rst-content p.caption .headerlink::before, + .rst-content table > caption .headerlink::before, + .rst-content tt.download span:first-child::before, + .wy-dropdown .caret::before, + .wy-inline-validate.wy-inline-validate-danger .wy-input-context::before, + .wy-inline-validate.wy-inline-validate-info .wy-input-context::before, + .wy-inline-validate.wy-inline-validate-success .wy-input-context::before, + .wy-inline-validate.wy-inline-validate-warning .wy-input-context::before, + .wy-menu-vertical li.current > a span.toctree-expand::before, + .wy-menu-vertical li.on a span.toctree-expand::before, + .wy-menu-vertical li span.toctree-expand::before { + text-decoration-color: inherit; + } + .rst-content .code-block-caption a .headerlink, + .rst-content a .admonition-title, + .rst-content code.download a span:first-child, + .rst-content dl dt a .headerlink, + .rst-content h1 a .headerlink, + .rst-content h2 a .headerlink, + .rst-content h3 a .headerlink, + .rst-content h4 a .headerlink, + .rst-content h5 a .headerlink, + .rst-content h6 a .headerlink, + .rst-content p.caption a .headerlink, + .rst-content table > caption a .headerlink, + .rst-content tt.download a span:first-child, + .wy-menu-vertical li.current > a span.toctree-expand, + .wy-menu-vertical li.on a span.toctree-expand, + .wy-menu-vertical li a span.toctree-expand, + a .fa, + a .icon, + a .rst-content .admonition-title, + a .rst-content .code-block-caption .headerlink, + a .rst-content code.download span:first-child, + a .rst-content dl dt .headerlink, + a .rst-content h1 .headerlink, + a .rst-content h2 .headerlink, + a .rst-content h3 .headerlink, + a .rst-content h4 .headerlink, + a .rst-content h5 .headerlink, + a .rst-content h6 .headerlink, + a .rst-content p.caption .headerlink, + a .rst-content table > caption .headerlink, + a .rst-content tt.download span:first-child, + a .wy-menu-vertical li span.toctree-expand { + text-decoration-color: inherit; + } + .rst-content .admonition, + .rst-content .admonition-todo, + .rst-content .attention, + .rst-content .caution, + .rst-content .danger, + .rst-content .error, + .rst-content .hint, + .rst-content .important, + .rst-content .note, + .rst-content .seealso, + .rst-content .tip, + .rst-content .warning, + .wy-alert { + background-image: initial; + background-color: rgb(26, 28, 29); + } + .rst-content .admonition-title, + .wy-alert-title { + color: rgb(216, 212, 207); + background-image: initial; + background-color: rgb(23, 73, 105); + } + .rst-content .danger, + .rst-content .error, + .rst-content .wy-alert-danger.admonition, + .rst-content .wy-alert-danger.admonition-todo, + .rst-content .wy-alert-danger.attention, + .rst-content .wy-alert-danger.caution, + .rst-content .wy-alert-danger.hint, + .rst-content .wy-alert-danger.important, + .rst-content .wy-alert-danger.note, + .rst-content .wy-alert-danger.seealso, + .rst-content .wy-alert-danger.tip, + .rst-content .wy-alert-danger.warning, + .wy-alert.wy-alert-danger { + background-image: initial; + background-color: rgb(42, 10, 6); + } + .rst-content .danger .admonition-title, + .rst-content .danger .wy-alert-title, + .rst-content .error .admonition-title, + .rst-content .error .wy-alert-title, + .rst-content .wy-alert-danger.admonition-todo .admonition-title, + .rst-content .wy-alert-danger.admonition-todo .wy-alert-title, + .rst-content .wy-alert-danger.admonition .admonition-title, + .rst-content .wy-alert-danger.admonition .wy-alert-title, + .rst-content .wy-alert-danger.attention .admonition-title, + .rst-content .wy-alert-danger.attention .wy-alert-title, + .rst-content .wy-alert-danger.caution .admonition-title, + .rst-content .wy-alert-danger.caution .wy-alert-title, + .rst-content .wy-alert-danger.hint .admonition-title, + .rst-content .wy-alert-danger.hint .wy-alert-title, + .rst-content .wy-alert-danger.important .admonition-title, + .rst-content .wy-alert-danger.important .wy-alert-title, + .rst-content .wy-alert-danger.note .admonition-title, + .rst-content .wy-alert-danger.note .wy-alert-title, + .rst-content .wy-alert-danger.seealso .admonition-title, + .rst-content .wy-alert-danger.seealso .wy-alert-title, + .rst-content .wy-alert-danger.tip .admonition-title, + .rst-content .wy-alert-danger.tip .wy-alert-title, + .rst-content .wy-alert-danger.warning .admonition-title, + .rst-content .wy-alert-danger.warning .wy-alert-title, + .rst-content .wy-alert.wy-alert-danger .admonition-title, + .wy-alert.wy-alert-danger .rst-content .admonition-title, + .wy-alert.wy-alert-danger .wy-alert-title { + background-image: initial; + background-color: rgb(86, 18, 10); + } + .rst-content .admonition-todo, + .rst-content .attention, + .rst-content .caution, + .rst-content .warning, + .rst-content .wy-alert-warning.admonition, + .rst-content .wy-alert-warning.danger, + .rst-content .wy-alert-warning.error, + .rst-content .wy-alert-warning.hint, + .rst-content .wy-alert-warning.important, + .rst-content .wy-alert-warning.note, + .rst-content .wy-alert-warning.seealso, + .rst-content .wy-alert-warning.tip, + .wy-alert.wy-alert-warning { + background-image: initial; + background-color: rgb(66, 42, 0); + } + .rst-content .admonition-todo .admonition-title, + .rst-content .admonition-todo .wy-alert-title, + .rst-content .attention .admonition-title, + .rst-content .attention .wy-alert-title, + .rst-content .caution .admonition-title, + .rst-content .caution .wy-alert-title, + .rst-content .warning .admonition-title, + .rst-content .warning .wy-alert-title, + .rst-content .wy-alert-warning.admonition .admonition-title, + .rst-content .wy-alert-warning.admonition .wy-alert-title, + .rst-content .wy-alert-warning.danger .admonition-title, + .rst-content .wy-alert-warning.danger .wy-alert-title, + .rst-content .wy-alert-warning.error .admonition-title, + .rst-content .wy-alert-warning.error .wy-alert-title, + .rst-content .wy-alert-warning.hint .admonition-title, + .rst-content .wy-alert-warning.hint .wy-alert-title, + .rst-content .wy-alert-warning.important .admonition-title, + .rst-content .wy-alert-warning.important .wy-alert-title, + .rst-content .wy-alert-warning.note .admonition-title, + .rst-content .wy-alert-warning.note .wy-alert-title, + .rst-content .wy-alert-warning.seealso .admonition-title, + .rst-content .wy-alert-warning.seealso .wy-alert-title, + .rst-content .wy-alert-warning.tip .admonition-title, + .rst-content .wy-alert-warning.tip .wy-alert-title, + .rst-content .wy-alert.wy-alert-warning .admonition-title, + .wy-alert.wy-alert-warning .rst-content .admonition-title, + .wy-alert.wy-alert-warning .wy-alert-title { + background-image: initial; + background-color: rgb(98, 52, 11); + } + .rst-content .note, + .rst-content .seealso, + .rst-content .wy-alert-info.admonition, + .rst-content .wy-alert-info.admonition-todo, + .rst-content .wy-alert-info.attention, + .rst-content .wy-alert-info.caution, + .rst-content .wy-alert-info.danger, + .rst-content .wy-alert-info.error, + .rst-content .wy-alert-info.hint, + .rst-content .wy-alert-info.important, + .rst-content .wy-alert-info.tip, + .rst-content .wy-alert-info.warning, + .wy-alert.wy-alert-info { + background-image: initial; + background-color: rgb(26, 28, 29); + } + .rst-content .note .admonition-title, + .rst-content .note .wy-alert-title, + .rst-content .seealso .admonition-title, + .rst-content .seealso .wy-alert-title, + .rst-content .wy-alert-info.admonition-todo .admonition-title, + .rst-content .wy-alert-info.admonition-todo .wy-alert-title, + .rst-content .wy-alert-info.admonition .admonition-title, + .rst-content .wy-alert-info.admonition .wy-alert-title, + .rst-content .wy-alert-info.attention .admonition-title, + .rst-content .wy-alert-info.attention .wy-alert-title, + .rst-content .wy-alert-info.caution .admonition-title, + .rst-content .wy-alert-info.caution .wy-alert-title, + .rst-content .wy-alert-info.danger .admonition-title, + .rst-content .wy-alert-info.danger .wy-alert-title, + .rst-content .wy-alert-info.error .admonition-title, + .rst-content .wy-alert-info.error .wy-alert-title, + .rst-content .wy-alert-info.hint .admonition-title, + .rst-content .wy-alert-info.hint .wy-alert-title, + .rst-content .wy-alert-info.important .admonition-title, + .rst-content .wy-alert-info.important .wy-alert-title, + .rst-content .wy-alert-info.tip .admonition-title, + .rst-content .wy-alert-info.tip .wy-alert-title, + .rst-content .wy-alert-info.warning .admonition-title, + .rst-content .wy-alert-info.warning .wy-alert-title, + .rst-content .wy-alert.wy-alert-info .admonition-title, + .wy-alert.wy-alert-info .rst-content .admonition-title, + .wy-alert.wy-alert-info .wy-alert-title { + background-image: initial; + background-color: rgb(23, 73, 105); + } + .rst-content .hint, + .rst-content .important, + .rst-content .tip, + .rst-content .wy-alert-success.admonition, + .rst-content .wy-alert-success.admonition-todo, + .rst-content .wy-alert-success.attention, + .rst-content .wy-alert-success.caution, + .rst-content .wy-alert-success.danger, + .rst-content .wy-alert-success.error, + .rst-content .wy-alert-success.note, + .rst-content .wy-alert-success.seealso, + .rst-content .wy-alert-success.warning, + .wy-alert.wy-alert-success { + background-image: initial; + background-color: rgb(7, 53, 46); + } + .rst-content .hint .admonition-title, + .rst-content .hint .wy-alert-title, + .rst-content .important .admonition-title, + .rst-content .important .wy-alert-title, + .rst-content .tip .admonition-title, + .rst-content .tip .wy-alert-title, + .rst-content .wy-alert-success.admonition-todo .admonition-title, + .rst-content .wy-alert-success.admonition-todo .wy-alert-title, + .rst-content .wy-alert-success.admonition .admonition-title, + .rst-content .wy-alert-success.admonition .wy-alert-title, + .rst-content .wy-alert-success.attention .admonition-title, + .rst-content .wy-alert-success.attention .wy-alert-title, + .rst-content .wy-alert-success.caution .admonition-title, + .rst-content .wy-alert-success.caution .wy-alert-title, + .rst-content .wy-alert-success.danger .admonition-title, + .rst-content .wy-alert-success.danger .wy-alert-title, + .rst-content .wy-alert-success.error .admonition-title, + .rst-content .wy-alert-success.error .wy-alert-title, + .rst-content .wy-alert-success.note .admonition-title, + .rst-content .wy-alert-success.note .wy-alert-title, + .rst-content .wy-alert-success.seealso .admonition-title, + .rst-content .wy-alert-success.seealso .wy-alert-title, + .rst-content .wy-alert-success.warning .admonition-title, + .rst-content .wy-alert-success.warning .wy-alert-title, + .rst-content .wy-alert.wy-alert-success .admonition-title, + .wy-alert.wy-alert-success .rst-content .admonition-title, + .wy-alert.wy-alert-success .wy-alert-title { + background-image: initial; + background-color: rgb(17, 120, 100); + } + .rst-content .wy-alert-neutral.admonition, + .rst-content .wy-alert-neutral.admonition-todo, + .rst-content .wy-alert-neutral.attention, + .rst-content .wy-alert-neutral.caution, + .rst-content .wy-alert-neutral.danger, + .rst-content .wy-alert-neutral.error, + .rst-content .wy-alert-neutral.hint, + .rst-content .wy-alert-neutral.important, + .rst-content .wy-alert-neutral.note, + .rst-content .wy-alert-neutral.seealso, + .rst-content .wy-alert-neutral.tip, + .rst-content .wy-alert-neutral.warning, + .wy-alert.wy-alert-neutral { + background-image: initial; + background-color: rgb(22, 29, 29); + } + .rst-content .wy-alert-neutral.admonition-todo .admonition-title, + .rst-content .wy-alert-neutral.admonition-todo .wy-alert-title, + .rst-content .wy-alert-neutral.admonition .admonition-title, + .rst-content .wy-alert-neutral.admonition .wy-alert-title, + .rst-content .wy-alert-neutral.attention .admonition-title, + .rst-content .wy-alert-neutral.attention .wy-alert-title, + .rst-content .wy-alert-neutral.caution .admonition-title, + .rst-content .wy-alert-neutral.caution .wy-alert-title, + .rst-content .wy-alert-neutral.danger .admonition-title, + .rst-content .wy-alert-neutral.danger .wy-alert-title, + .rst-content .wy-alert-neutral.error .admonition-title, + .rst-content .wy-alert-neutral.error .wy-alert-title, + .rst-content .wy-alert-neutral.hint .admonition-title, + .rst-content .wy-alert-neutral.hint .wy-alert-title, + .rst-content .wy-alert-neutral.important .admonition-title, + .rst-content .wy-alert-neutral.important .wy-alert-title, + .rst-content .wy-alert-neutral.note .admonition-title, + .rst-content .wy-alert-neutral.note .wy-alert-title, + .rst-content .wy-alert-neutral.seealso .admonition-title, + .rst-content .wy-alert-neutral.seealso .wy-alert-title, + .rst-content .wy-alert-neutral.tip .admonition-title, + .rst-content .wy-alert-neutral.tip .wy-alert-title, + .rst-content .wy-alert-neutral.warning .admonition-title, + .rst-content .wy-alert-neutral.warning .wy-alert-title, + .rst-content .wy-alert.wy-alert-neutral .admonition-title, + .wy-alert.wy-alert-neutral .rst-content .admonition-title, + .wy-alert.wy-alert-neutral .wy-alert-title { + color: rgb(188, 182, 173); + background-image: initial; + background-color: rgb(32, 35, 36); + } + .rst-content .wy-alert-neutral.admonition-todo a, + .rst-content .wy-alert-neutral.admonition a, + .rst-content .wy-alert-neutral.attention a, + .rst-content .wy-alert-neutral.caution a, + .rst-content .wy-alert-neutral.danger a, + .rst-content .wy-alert-neutral.error a, + .rst-content .wy-alert-neutral.hint a, + .rst-content .wy-alert-neutral.important a, + .rst-content .wy-alert-neutral.note a, + .rst-content .wy-alert-neutral.seealso a, + .rst-content .wy-alert-neutral.tip a, + .rst-content .wy-alert-neutral.warning a, + .wy-alert.wy-alert-neutral a { + color: rgb(94, 169, 219); + } + .wy-tray-container li { + background-image: initial; + background-color: transparent; + color: rgb(216, 212, 207); + box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 0px; + } + .wy-tray-container li.wy-tray-item-success { + background-image: initial; + background-color: rgb(25, 111, 62); + } + .wy-tray-container li.wy-tray-item-info { + background-image: initial; + background-color: rgb(26, 82, 118); + } + .wy-tray-container li.wy-tray-item-warning { + background-image: initial; + background-color: rgb(142, 75, 16); + } + .wy-tray-container li.wy-tray-item-danger { + background-image: initial; + background-color: rgb(130, 26, 16); + } + .btn { + color: rgb(216, 212, 207); + border-color: rgba(84, 91, 95, 0.1); + background-color: rgb(25, 111, 62); + text-decoration-color: initial; + box-shadow: rgba(19, 21, 22, 0.5) 0px 1px 2px -1px inset, + rgba(0, 0, 0, 0.1) 0px -2px 0px 0px inset; + } + .btn-hover { + background-image: initial; + background-color: rgb(30, 91, 132); + color: rgb(216, 212, 207); + } + .btn:hover { + background-image: initial; + background-color: rgb(28, 125, 69); + color: rgb(216, 212, 207); + } + .btn:focus { + background-image: initial; + background-color: rgb(28, 125, 69); + outline-color: initial; + } + .btn:active { + box-shadow: rgba(0, 0, 0, 0.05) 0px -1px 0px 0px inset, + rgba(0, 0, 0, 0.1) 0px 2px 0px 0px inset; + } + .btn:visited { + color: rgb(216, 212, 207); + } + .btn-disabled, + .btn-disabled:active, + .btn-disabled:focus, + .btn-disabled:hover, + .btn:disabled { + background-image: none; + box-shadow: none; + } + .btn-info { + background-color: rgb(26, 82, 118) !important; + } + .btn-info:hover { + background-color: rgb(30, 91, 132) !important; + } + .btn-neutral { + background-color: rgb(22, 29, 29) !important; + color: rgb(188, 182, 173) !important; + } + .btn-neutral:hover { + color: rgb(188, 182, 173); + background-color: rgb(27, 35, 35) !important; + } + .btn-neutral:visited { + color: rgb(188, 182, 173) !important; + } + .btn-success { + background-color: rgb(25, 111, 62) !important; + } + .btn-success:hover { + background-color: rgb(22, 98, 54) !important; + } + .btn-danger { + background-color: rgb(130, 26, 16) !important; + } + .btn-danger:hover { + background-color: rgb(119, 24, 14) !important; + } + .btn-warning { + background-color: rgb(142, 75, 16) !important; + } + .btn-warning:hover { + background-color: rgb(132, 70, 14) !important; + } + .btn-invert { + background-color: rgb(21, 22, 23); + } + .btn-invert:hover { + background-color: rgb(28, 31, 32) !important; + } + .btn-link { + color: rgb(94, 169, 219); + box-shadow: none; + background-color: transparent !important; + border-color: transparent !important; + } + .btn-link:active, + .btn-link:hover { + box-shadow: none; + background-color: transparent !important; + color: rgb(90, 168, 218) !important; + } + .btn-link:visited { + color: rgb(170, 113, 192); + } + .wy-dropdown-menu { + background-image: initial; + background-color: rgb(21, 22, 23); + border-color: rgb(119, 111, 98); + box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 2px 0px; + } + .wy-dropdown-menu > dd > a { + color: rgb(188, 182, 173); + } + .wy-dropdown-menu > dd > a:hover { + background-image: initial; + background-color: rgb(26, 82, 118); + color: rgb(216, 212, 207); + } + .wy-dropdown-menu > dd.divider { + border-top-color: rgb(119, 111, 98); + } + .wy-dropdown-menu > dd.call-to-action { + background-image: initial; + background-color: rgb(32, 35, 36); + } + .wy-dropdown-menu > dd.call-to-action:hover { + background-image: initial; + background-color: rgb(32, 35, 36); + } + .wy-dropdown-menu > dd.call-to-action .btn { + color: rgb(216, 212, 207); + } + .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu { + background-image: initial; + background-color: rgb(21, 22, 23); + } + .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover { + background-image: initial; + background-color: rgb(26, 82, 118); + color: rgb(216, 212, 207); + } + .wy-dropdown-arrow::before { + border-bottom-color: rgb(122, 113, 100); + border-left-color: transparent; + border-right-color: transparent; + } + fieldset, + legend { + border-color: initial; + } + label { + color: rgb(193, 188, 180); + } + .wy-control-group.wy-control-group-required > label::after { + color: rgb(234, 96, 82); + } + .wy-form-message-inline { + color: rgb(171, 164, 153); + } + .wy-form-message { + color: rgb(171, 164, 153); + } + input[type="color"], input[type="date"], input[type="datetime-local"], input[type="datetime"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"] { + border-color: rgb(118, 110, 97); + box-shadow: rgb(35, 38, 39) 0px 1px 3px inset; + } + input[type="color"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, input[type="datetime"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus { + outline-color: initial; + border-color: rgb(103, 96, 85); + } + input.no-focus:focus { + border-color: rgb(118, 110, 97) !important; + } + input[type="checkbox"]:focus, input[type="file"]:focus, input[type="radio"]:focus { + outline-color: rgb(15, 126, 186); + } + input[type="color"][disabled], input[type="date"][disabled], input[type="datetime-local"][disabled], input[type="datetime"][disabled], input[type="email"][disabled], input[type="month"][disabled], input[type="number"][disabled], input[type="password"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="text"][disabled], input[type="time"][disabled], input[type="url"][disabled], input[type="week"][disabled] { + background-color: rgb(21, 23, 24); + } + input:focus:invalid, + select:focus:invalid, + textarea:focus:invalid { + color: rgb(234, 96, 82); + border-color: rgb(183, 38, 22); + } + input:focus:invalid:focus, + select:focus:invalid:focus, + textarea:focus:invalid:focus { + border-color: rgb(183, 38, 22); + } + input[type="checkbox"]:focus:invalid:focus, input[type="file"]:focus:invalid:focus, input[type="radio"]:focus:invalid:focus { + outline-color: rgb(183, 38, 22); + } + select, + textarea { + border-color: rgb(118, 110, 97); + box-shadow: rgb(35, 38, 39) 0px 1px 3px inset; + } + select { + border-color: rgb(118, 110, 97); + background-color: rgb(19, 21, 22); + } + select:focus, + textarea:focus { + outline-color: initial; + } + input[readonly], + select[disabled], + select[readonly], + textarea[disabled], + textarea[readonly] { + background-color: rgb(21, 23, 24); + } + .wy-checkbox, + .wy-radio { + color: rgb(188, 182, 173); + } + .wy-input-prefix .wy-input-context, + .wy-input-suffix .wy-input-context { + background-color: rgb(22, 29, 29); + border-color: rgb(118, 110, 97); + color: rgb(171, 164, 153); + } + .wy-input-suffix .wy-input-context { + border-left-color: initial; + } + .wy-input-prefix .wy-input-context { + border-right-color: initial; + } + .wy-switch::before { + background-image: initial; + background-color: rgb(42, 46, 47); + } + .wy-switch::after { + background-image: initial; + background-color: rgb(66, 71, 74); + } + .wy-switch span { + color: rgb(193, 188, 180); + } + .wy-switch.active::before { + background-image: initial; + background-color: rgb(19, 85, 46); + } + .wy-switch.active::after { + background-image: initial; + background-color: rgb(25, 111, 62); + } + .wy-control-group.wy-control-group-error .wy-form-message, + .wy-control-group.wy-control-group-error > label { + color: rgb(234, 96, 82); + } + .wy-control-group.wy-control-group-error input[type="color"], .wy-control-group.wy-control-group-error input[type="date"], .wy-control-group.wy-control-group-error input[type="datetime-local"], .wy-control-group.wy-control-group-error input[type="datetime"], .wy-control-group.wy-control-group-error input[type="email"], .wy-control-group.wy-control-group-error input[type="month"], .wy-control-group.wy-control-group-error input[type="number"], .wy-control-group.wy-control-group-error input[type="password"], .wy-control-group.wy-control-group-error input[type="search"], .wy-control-group.wy-control-group-error input[type="tel"], .wy-control-group.wy-control-group-error input[type="text"], .wy-control-group.wy-control-group-error input[type="time"], .wy-control-group.wy-control-group-error input[type="url"], .wy-control-group.wy-control-group-error input[type="week"], + .wy-control-group.wy-control-group-error textarea { + border-color: rgb(183, 38, 22); + } + .wy-inline-validate.wy-inline-validate-success .wy-input-context { + color: rgb(99, 220, 150); + } + .wy-inline-validate.wy-inline-validate-danger .wy-input-context { + color: rgb(234, 96, 82); + } + .wy-inline-validate.wy-inline-validate-warning .wy-input-context { + color: rgb(234, 146, 69); + } + .wy-inline-validate.wy-inline-validate-info .wy-input-context { + color: rgb(94, 169, 219); + } + .rst-content table.docutils caption, + .rst-content table.field-list caption, + .wy-table caption { + color: rgb(216, 212, 207); + } + .rst-content table.docutils thead, + .rst-content table.field-list thead, + .wy-table thead { + color: rgb(216, 212, 207); + } + .rst-content table.docutils thead th, + .rst-content table.field-list thead th, + .wy-table thead th { + border-bottom-color: rgb(120, 112, 99); + } + .rst-content table.docutils td, + .rst-content table.field-list td, + .wy-table td { + background-color: transparent; + } + .wy-table-secondary { + color: rgb(160, 151, 139); + } + .wy-table-tertiary { + color: rgb(160, 151, 139); + } + .rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td, + .wy-table-backed, + .wy-table-odd td, + .wy-table-striped tr:nth-child(2n-1) td { + background-color: rgb(22, 29, 29); + } + .rst-content table.docutils, + .wy-table-bordered-all { + border-color: rgb(120, 112, 99); + } + .rst-content table.docutils td, + .wy-table-bordered-all td { + border-bottom-color: rgb(120, 112, 99); + border-left-color: rgb(120, 112, 99); + } + .wy-table-bordered { + border-color: rgb(120, 112, 99); + } + .wy-table-bordered-rows td { + border-bottom-color: rgb(120, 112, 99); + } + .wy-table-horizontal td, + .wy-table-horizontal th { + border-bottom-color: rgb(120, 112, 99); + } + a { + color: rgb(94, 169, 219); + text-decoration-color: initial; + } + a:hover { + color: rgb(82, 164, 217); + } + a:visited { + color: rgb(170, 113, 192); + } + body { + color: rgb(188, 182, 173); + background-image: initial; + background-color: rgb(26, 29, 30); + } + .wy-text-strike { + text-decoration-color: initial; + } + .wy-text-warning { + color: rgb(234, 146, 69) !important; + } + a.wy-text-warning:hover { + color: rgb(237, 160, 92) !important; + } + .wy-text-info { + color: rgb(94, 169, 219) !important; + } + a.wy-text-info:hover { + color: rgb(90, 168, 218) !important; + } + .wy-text-success { + color: rgb(99, 220, 150) !important; + } + a.wy-text-success:hover { + color: rgb(86, 217, 142) !important; + } + .wy-text-danger { + color: rgb(234, 96, 82) !important; + } + a.wy-text-danger:hover { + color: rgb(237, 118, 104) !important; + } + .wy-text-neutral { + color: rgb(188, 182, 173) !important; + } + a.wy-text-neutral:hover { + color: rgb(177, 170, 160) !important; + } + hr { + border-right-color: initial; + border-bottom-color: initial; + border-left-color: initial; + border-top-color: rgb(120, 112, 99); + } + .rst-content code, + .rst-content tt, + code { + background-image: initial; + background-color: rgb(19, 21, 22); + border-color: rgb(120, 112, 99); + color: rgb(234, 96, 82); + } + .rst-content .section ul, + .rst-content .toctree-wrapper ul, + .wy-plain-list-disc, + article ul { + list-style-image: initial; + } + .rst-content .section ul li, + .rst-content .toctree-wrapper ul li, + .wy-plain-list-disc li, + article ul li { + list-style-image: initial; + } + .rst-content .section ul li li, + .rst-content .toctree-wrapper ul li li, + .wy-plain-list-disc li li, + article ul li li { + list-style-image: initial; + } + .rst-content .section ul li li li, + .rst-content .toctree-wrapper ul li li li, + .wy-plain-list-disc li li li, + article ul li li li { + list-style-image: initial; + } + .rst-content .section ul li ol li, + .rst-content .toctree-wrapper ul li ol li, + .wy-plain-list-disc li ol li, + article ul li ol li { + list-style-image: initial; + } + .rst-content .section ol, + .rst-content ol.arabic, + .wy-plain-list-decimal, + article ol { + list-style-image: initial; + } + .rst-content .section ol li, + .rst-content ol.arabic li, + .wy-plain-list-decimal li, + article ol li { + list-style-image: initial; + } + .rst-content .section ol li ul li, + .rst-content ol.arabic li ul li, + .wy-plain-list-decimal li ul li, + article ol li ul li { + list-style-image: initial; + } + .rst-content .wy-breadcrumbs li tt, + .wy-breadcrumbs li .rst-content tt, + .wy-breadcrumbs li code { + border-color: initial; + background-image: none; + background-color: initial; + } + .rst-content .wy-breadcrumbs li tt.literal, + .wy-breadcrumbs li .rst-content tt.literal, + .wy-breadcrumbs li code.literal { + color: rgb(188, 182, 173); + } + .wy-breadcrumbs-extra { + color: rgb(182, 176, 167); + } + .wy-menu a:hover { + text-decoration-color: initial; + } + .wy-menu-horiz li:hover { + background-image: initial; + background-color: rgba(19, 21, 22, 0.1); + } + .wy-menu-horiz li.divide-left { + border-left-color: rgb(104, 97, 86); + } + .wy-menu-horiz li.divide-right { + border-right-color: rgb(104, 97, 86); + } + .wy-menu-vertical header, + .wy-menu-vertical p.caption { + color: rgb(101, 173, 220); + } + .wy-menu-vertical li.divide-top { + border-top-color: rgb(104, 97, 86); + } + .wy-menu-vertical li.divide-bottom { + border-bottom-color: rgb(104, 97, 86); + } + .wy-menu-vertical li.current { + background-image: initial; + background-color: rgb(32, 35, 36); + } + .wy-menu-vertical li.current a { + color: rgb(160, 151, 139); + border-right-color: rgb(118, 110, 97); + } + .wy-menu-vertical li.current a:hover { + background-image: initial; + background-color: rgb(38, 41, 42); + } + .rst-content .wy-menu-vertical li tt, + .wy-menu-vertical li .rst-content tt, + .wy-menu-vertical li code { + border-color: initial; + background-image: inherit; + background-color: inherit; + color: inherit; + } + .wy-menu-vertical li span.toctree-expand { + color: rgb(182, 175, 166); + } + .wy-menu-vertical li.current > a, + .wy-menu-vertical li.on a { + color: rgb(188, 182, 173); + background-image: initial; + background-color: rgb(21, 22, 23); + border-color: initial; + } + .wy-menu-vertical li.current > a:hover, + .wy-menu-vertical li.on a:hover { + background-image: initial; + background-color: rgb(21, 22, 23); + } + .wy-menu-vertical li.current > a:hover span.toctree-expand, + .wy-menu-vertical li.on a:hover span.toctree-expand { + color: rgb(160, 151, 139); + } + .wy-menu-vertical li.current > a span.toctree-expand, + .wy-menu-vertical li.on a span.toctree-expand { + color: rgb(193, 188, 180); + } + .wy-menu-vertical li.toctree-l1.current > a { + border-bottom-color: rgb(118, 110, 97); + border-top-color: rgb(118, 110, 97); + } + .wy-menu-vertical li.toctree-l2 a, + .wy-menu-vertical li.toctree-l3 a, + .wy-menu-vertical li.toctree-l4 a, + .wy-menu-vertical li.toctree-l5 a, + .wy-menu-vertical li.toctree-l6 a, + .wy-menu-vertical li.toctree-l7 a, + .wy-menu-vertical li.toctree-l8 a, + .wy-menu-vertical li.toctree-l9 a, + .wy-menu-vertical li.toctree-l10 a { + color: rgb(188, 182, 173); + } + .wy-menu-vertical li.toctree-l2 a:hover span.toctree-expand, + .wy-menu-vertical li.toctree-l3 a:hover span.toctree-expand, + .wy-menu-vertical li.toctree-l4 a:hover span.toctree-expand, + .wy-menu-vertical li.toctree-l5 a:hover span.toctree-expand, + .wy-menu-vertical li.toctree-l6 a:hover span.toctree-expand, + .wy-menu-vertical li.toctree-l7 a:hover span.toctree-expand, + .wy-menu-vertical li.toctree-l8 a:hover span.toctree-expand, + .wy-menu-vertical li.toctree-l9 a:hover span.toctree-expand, + .wy-menu-vertical li.toctree-l10 a:hover span.toctree-expand { + color: rgb(160, 151, 139); + } + .wy-menu-vertical li.toctree-l2.current > a, + .wy-menu-vertical li.toctree-l2.current li.toctree-l3 > a { + background-image: initial; + background-color: rgb(43, 47, 49); + } + .wy-menu-vertical li.toctree-l2 span.toctree-expand { + color: rgb(175, 168, 158); + } + .wy-menu-vertical li.toctree-l3.current > a, + .wy-menu-vertical li.toctree-l3.current li.toctree-l4 > a { + background-image: initial; + background-color: rgb(49, 53, 55); + } + .wy-menu-vertical li.toctree-l3 span.toctree-expand { + color: rgb(169, 162, 151); + } + .wy-menu-vertical li ul li a { + color: rgb(199, 194, 187); + } + .wy-menu-vertical a { + color: rgb(199, 194, 187); + } + .wy-menu-vertical a:hover { + background-color: rgb(46, 49, 51); + } + .wy-menu-vertical a:hover span.toctree-expand { + color: rgb(199, 194, 187); + } + .wy-menu-vertical a:active { + background-color: rgb(26, 82, 118); + color: rgb(216, 212, 207); + } + .wy-menu-vertical a:active span.toctree-expand { + color: rgb(216, 212, 207); + } + .wy-side-nav-search { + background-color: rgb(26, 82, 118); + color: rgb(215, 211, 206); + } + .wy-side-nav-search input[type="text"] { + border-color: rgb(35, 112, 161); + } + .wy-side-nav-search img { + background-color: rgb(26, 82, 118); + } + .wy-side-nav-search .wy-dropdown > a, + .wy-side-nav-search > a { + color: rgb(215, 211, 206); + } + .wy-side-nav-search .wy-dropdown > a:hover, + .wy-side-nav-search > a:hover { + background-image: initial; + background-color: rgba(19, 21, 22, 0.1); + } + .wy-side-nav-search .wy-dropdown > a img.logo, + .wy-side-nav-search > a img.logo { + background-image: initial; + background-color: transparent; + } + .wy-side-nav-search > div.version { + color: rgba(216, 212, 207, 0.3); + } + .wy-nav .wy-menu-vertical header { + color: rgb(94, 169, 219); + } + .wy-nav .wy-menu-vertical a { + color: rgb(182, 176, 167); + } + .wy-nav .wy-menu-vertical a:hover { + background-color: rgb(26, 82, 118); + color: rgb(216, 212, 207); + } + .wy-body-for-nav { + background-image: initial; + background-color: rgb(21, 22, 23); + } + .wy-nav-side { + color: rgb(172, 164, 154); + background-image: initial; + background-color: rgb(30, 33, 34); + } + .wy-nav-top { + background-image: initial; + background-color: rgb(26, 82, 118); + color: rgb(216, 212, 207); + } + .wy-nav-top a { + color: rgb(216, 212, 207); + } + .wy-nav-top img { + background-color: rgb(26, 82, 118); + } + .wy-nav-content-wrap { + background-image: initial; + background-color: rgb(21, 22, 23); + } + .wy-body-mask { + background-image: initial; + background-color: rgba(0, 0, 0, 0.2); + } + footer { + color: rgb(160, 151, 139); + } + .rst-content footer span.commit tt, + footer span.commit .rst-content tt, + footer span.commit code { + background-image: none; + background-color: initial; + border-color: initial; + color: rgb(160, 151, 139); + } + #search-results .search li { + border-bottom-color: rgb(120, 112, 99); + } + #search-results .search li:first-child { + border-top-color: rgb(120, 112, 99); + } + #search-results .context { + color: rgb(160, 151, 139); + } + .wy-body-for-nav { + background-image: initial; + background-color: rgb(21, 22, 23); + } + @media screen and (min-width: 1100px) { + .wy-nav-content-wrap { + background-image: initial; + background-color: rgba(0, 0, 0, 0.05); + } + .wy-nav-content { + background-image: initial; + background-color: rgb(21, 22, 23); + } + } + .rst-versions { + color: rgb(215, 211, 206); + background-image: initial; + background-color: rgb(18, 20, 20); + } + .rst-versions a { + color: rgb(94, 169, 219); + text-decoration-color: initial; + } + .rst-versions .rst-current-version { + background-color: rgb(23, 25, 26); + color: rgb(99, 220, 150); + } + .rst-content .code-block-caption .rst-versions .rst-current-version .headerlink, + .rst-content .rst-versions .rst-current-version .admonition-title, + .rst-content code.download .rst-versions .rst-current-version span:first-child, + .rst-content dl dt .rst-versions .rst-current-version .headerlink, + .rst-content h1 .rst-versions .rst-current-version .headerlink, + .rst-content h2 .rst-versions .rst-current-version .headerlink, + .rst-content h3 .rst-versions .rst-current-version .headerlink, + .rst-content h4 .rst-versions .rst-current-version .headerlink, + .rst-content h5 .rst-versions .rst-current-version .headerlink, + .rst-content h6 .rst-versions .rst-current-version .headerlink, + .rst-content p.caption .rst-versions .rst-current-version .headerlink, + .rst-content table > caption .rst-versions .rst-current-version .headerlink, + .rst-content tt.download .rst-versions .rst-current-version span:first-child, + .rst-versions .rst-current-version .fa, + .rst-versions .rst-current-version .icon, + .rst-versions .rst-current-version .rst-content .admonition-title, + .rst-versions .rst-current-version .rst-content .code-block-caption .headerlink, + .rst-versions .rst-current-version .rst-content code.download span:first-child, + .rst-versions .rst-current-version .rst-content dl dt .headerlink, + .rst-versions .rst-current-version .rst-content h1 .headerlink, + .rst-versions .rst-current-version .rst-content h2 .headerlink, + .rst-versions .rst-current-version .rst-content h3 .headerlink, + .rst-versions .rst-current-version .rst-content h4 .headerlink, + .rst-versions .rst-current-version .rst-content h5 .headerlink, + .rst-versions .rst-current-version .rst-content h6 .headerlink, + .rst-versions .rst-current-version .rst-content p.caption .headerlink, + .rst-versions .rst-current-version .rst-content table > caption .headerlink, + .rst-versions .rst-current-version .rst-content tt.download span:first-child, + .rst-versions .rst-current-version .wy-menu-vertical li span.toctree-expand, + .wy-menu-vertical li .rst-versions .rst-current-version span.toctree-expand { + color: rgb(215, 211, 206); + } + .rst-versions .rst-current-version.rst-out-of-date { + background-color: rgb(130, 26, 16); + color: rgb(216, 212, 207); + } + .rst-versions .rst-current-version.rst-active-old-version { + background-color: rgb(154, 125, 9); + color: rgb(216, 212, 207); + } + .rst-versions .rst-other-versions { + color: rgb(160, 151, 139); + } + .rst-versions .rst-other-versions hr { + border-right-color: initial; + border-bottom-color: initial; + border-left-color: initial; + border-top-color: rgb(104, 97, 86); + } + .rst-versions .rst-other-versions dd a { + color: rgb(215, 211, 206); + } + .rst-versions.rst-badge { + border-color: initial; + } + .rst-content abbr[title] { + text-decoration-color: initial; + } + .rst-content.style-external-links a.reference.external::after { + color: rgb(182, 176, 167); + } + .rst-content div[class^="highlight"], + .rst-content pre.literal-block { + border-color: rgb(120, 112, 99); + } + .rst-content div[class^="highlight"] div[class^="highlight"], .rst-content pre.literal-block div[class^="highlight"] { + border-color: initial; + } + .rst-content .linenodiv pre { + border-right-color: rgb(121, 112, 99); + } + .rst-content .admonition table { + border-color: rgba(84, 91, 95, 0.1); + } + .rst-content .admonition table td, + .rst-content .admonition table th { + background-image: initial !important; + background-color: transparent !important; + border-color: rgba(84, 91, 95, 0.1) !important; + } + .rst-content .section ol.loweralpha, + .rst-content .section ol.loweralpha > li { + list-style-image: initial; + } + .rst-content .section ol.upperalpha, + .rst-content .section ol.upperalpha > li { + list-style-image: initial; + } + .rst-content .toc-backref { + color: rgb(188, 182, 173); + } + .rst-content .sidebar { + background-image: initial; + background-color: rgb(22, 29, 29); + border-color: rgb(120, 112, 99); + } + .rst-content .sidebar .sidebar-title { + background-image: initial; + background-color: rgb(32, 35, 36); + } + .rst-content .highlighted { + background-image: initial; + background-color: rgb(154, 125, 9); + box-shadow: rgb(154, 125, 9) 0px 0px 0px 2px; + } + html.writer-html4 .rst-content table.docutils.citation, + html.writer-html4 .rst-content table.docutils.footnote { + background-image: none; + background-color: initial; + border-color: initial; + } + html.writer-html4 .rst-content table.docutils.citation td, + html.writer-html4 .rst-content table.docutils.citation tr, + html.writer-html4 .rst-content table.docutils.footnote td, + html.writer-html4 .rst-content table.docutils.footnote tr { + border-color: initial; + background-color: transparent !important; + } + .rst-content table.docutils.footnote, + html.writer-html4 .rst-content table.docutils.citation, + html.writer-html5 .rst-content dl.footnote { + color: rgb(160, 151, 139); + } + .rst-content table.docutils.footnote code, + .rst-content table.docutils.footnote tt, + html.writer-html4 .rst-content table.docutils.citation code, + html.writer-html4 .rst-content table.docutils.citation tt, + html.writer-html5 .rst-content dl.footnote code, + html.writer-html5 .rst-content dl.footnote tt { + color: rgb(178, 172, 162); + } + .rst-content table.docutils th { + border-color: rgb(120, 112, 99); + } + html.writer-html5 .rst-content table.docutils th { + border-color: rgb(120, 112, 99); + } + .rst-content table.field-list, + .rst-content table.field-list td { + border-color: initial; + } + .rst-content code, + .rst-content tt { + color: rgb(216, 212, 207); + } + .rst-content code.literal, + .rst-content tt.literal { + color: rgb(234, 96, 82); + } + .rst-content code.xref, + .rst-content tt.xref, + a .rst-content code, + a .rst-content tt { + color: rgb(188, 182, 173); + } + .rst-content a code, + .rst-content a tt { + color: rgb(94, 169, 219); + } + html.writer-html4 .rst-content dl:not(.docutils) > dt, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) > dt { + background-image: initial; + background-color: rgb(26, 28, 29); + color: rgb(94, 169, 219); + border-top-color: rgb(37, 119, 171); + } + html.writer-html4 .rst-content dl:not(.docutils) > dt::before, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) > dt::before { + color: rgb(111, 179, 223); + } + html.writer-html4 .rst-content dl:not(.docutils) > dt .headerlink, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) > dt .headerlink { + color: rgb(188, 182, 173); + } + html.writer-html4 .rst-content dl:not(.docutils) dl:not(.field-list) > dt, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dl:not(.field-list) > dt { + border-top-color: initial; + border-right-color: initial; + border-bottom-color: initial; + border-left-color: rgb(118, 110, 97); + background-image: initial; + background-color: rgb(26, 28, 29); + color: rgb(178, 172, 162); + } + html.writer-html4 .rst-content dl:not(.docutils) dl:not(.field-list) > dt .headerlink, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dl:not(.field-list) > dt .headerlink { + color: rgb(188, 182, 173); + } + html.writer-html4 .rst-content dl:not(.docutils) code.descclassname, + html.writer-html4 .rst-content dl:not(.docutils) code.descname, + html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname, + html.writer-html4 .rst-content dl:not(.docutils) tt.descname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descclassname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descclassname, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descname { + background-color: transparent; + border-color: initial; + } + html.writer-html4 .rst-content dl:not(.docutils) .optional, + html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .optional { + color: rgb(216, 212, 207); + } + .rst-content .viewcode-back, + .rst-content .viewcode-link { + color: rgb(99, 220, 150); + } + .rst-content code.download, + .rst-content tt.download { + background-image: inherit; + background-color: inherit; + color: inherit; + border-color: inherit; + } + .rst-content .guilabel { + border-color: rgb(38, 119, 172); + background-image: initial; + background-color: rgb(26, 28, 29); + } + span[id*="MathJax-Span"] { + color: rgb(188, 182, 173); + } + td.linenos .normal { + color: inherit; + background-color: transparent; + } + span.linenos { + color: inherit; + background-color: transparent; + } + td.linenos .special { + color: rgb(216, 212, 207); + background-color: rgb(71, 71, 0); + } + span.linenos.special { + color: rgb(216, 212, 207); + background-color: rgb(71, 71, 0); + } + .highlight .hll { + background-color: rgb(66, 66, 0); + } + .highlight { + background-image: initial; + background-color: rgb(49, 66, 0); + } + .highlight .c { + color: rgb(124, 182, 197); + } + .highlight .err { + border-color: rgb(201, 0, 0); + } + .highlight .k { + color: rgb(114, 255, 154); + } + .highlight .o { + color: rgb(171, 164, 153); + } + .highlight .ch { + color: rgb(124, 182, 197); + } + .highlight .cm { + color: rgb(124, 182, 197); + } + .highlight .cp { + color: rgb(114, 255, 154); + } + .highlight .cpf { + color: rgb(124, 182, 197); + } + .highlight .c1 { + color: rgb(124, 182, 197); + } + .highlight .cs { + color: rgb(124, 182, 197); + background-color: rgb(48, 0, 0); + } + .highlight .gd { + color: rgb(255, 90, 90); + } + .highlight .gr { + color: rgb(255, 44, 44); + } + .highlight .gh { + color: rgb(114, 185, 255); + } + .highlight .gi { + color: rgb(90, 255, 90); + } + .highlight .go { + color: rgb(193, 188, 180); + } + .highlight .gp { + color: rgb(246, 151, 75); + } + .highlight .gu { + color: rgb(255, 105, 255); + } + .highlight .gt { + color: rgb(75, 173, 255); + } + .highlight .kc { + color: rgb(114, 255, 154); + } + .highlight .kd { + color: rgb(114, 255, 154); + } + .highlight .kn { + color: rgb(114, 255, 154); + } + .highlight .kp { + color: rgb(114, 255, 154); + } + .highlight .kr { + color: rgb(114, 255, 154); + } + .highlight .kt { + color: rgb(255, 133, 98); + } + .highlight .m { + color: rgb(123, 222, 173); + } + .highlight .s { + color: rgb(126, 170, 203); + } + .highlight .na { + color: rgb(126, 170, 203); + } + .highlight .nb { + color: rgb(114, 255, 154); + } + .highlight .nc { + color: rgb(86, 196, 242); + } + .highlight .no { + color: rgb(108, 180, 216); + } + .highlight .nd { + color: rgb(178, 172, 162); + } + .highlight .ni { + color: rgb(220, 111, 85); + } + .highlight .ne { + color: rgb(114, 255, 154); + } + .highlight .nf { + color: rgb(120, 189, 248); + } + .highlight .nl { + color: rgb(121, 194, 255); + } + .highlight .nn { + color: rgb(86, 196, 242); + } + .highlight .nt { + color: rgb(125, 192, 248); + } + .highlight .nv { + color: rgb(192, 108, 216); + } + .highlight .ow { + color: rgb(114, 255, 154); + } + .highlight .w { + color: rgb(186, 180, 171); + } + .highlight .mb { + color: rgb(123, 222, 173); + } + .highlight .mf { + color: rgb(123, 222, 173); + } + .highlight .mh { + color: rgb(123, 222, 173); + } + .highlight .mi { + color: rgb(123, 222, 173); + } + .highlight .mo { + color: rgb(123, 222, 173); + } + .highlight .sa { + color: rgb(126, 170, 203); + } + .highlight .sb { + color: rgb(126, 170, 203); + } + .highlight .sc { + color: rgb(126, 170, 203); + } + .highlight .dl { + color: rgb(126, 170, 203); + } + .highlight .sd { + color: rgb(126, 170, 203); + } + .highlight .s2 { + color: rgb(126, 170, 203); + } + .highlight .se { + color: rgb(126, 170, 203); + } + .highlight .sh { + color: rgb(126, 170, 203); + } + .highlight .si { + color: rgb(120, 172, 210); + } + .highlight .sx { + color: rgb(246, 151, 75); + } + .highlight .sr { + color: rgb(129, 182, 223); + } + .highlight .s1 { + color: rgb(126, 170, 203); + } + .highlight .ss { + color: rgb(186, 229, 123); + } + .highlight .bp { + color: rgb(114, 255, 154); + } + .highlight .fm { + color: rgb(120, 189, 248); + } + .highlight .vc { + color: rgb(192, 108, 216); + } + .highlight .vg { + color: rgb(192, 108, 216); + } + .highlight .vi { + color: rgb(192, 108, 216); + } + .highlight .vm { + color: rgb(192, 108, 216); + } + .highlight .il { + color: rgb(123, 222, 173); + } + [role="tablist"] { + border-bottom-color: rgb(115, 107, 95); + } + .sphinx-tabs-tab { + color: rgb(118, 181, 226); + background-color: rgba(19, 21, 22, 0); border-color: initial; + } + .sphinx-tabs-tab[aria-selected="true"] { + border-color: rgb(115, 107, 95) rgb(115, 107, 95) rgb(123, 114, 101); + background-color: rgb(19, 21, 22); + } + .sphinx-tabs-panel { + border-right-color: rgb(115, 107, 95); + border-bottom-color: rgb(115, 107, 95); + border-left-color: rgb(115, 107, 95); + border-top-color: initial; + background-image: initial; + background-color: rgb(19, 21, 22); + } + .rst-other-versions a { + border-color: initial; + } + .ethical-sidebar .ethical-image-link, + .ethical-footer .ethical-image-link { + border-color: initial; + } + .ethical-sidebar, + .ethical-footer { + background-color: rgb(27, 29, 30); + border-color: rgb(118, 110, 97); + color: rgb(211, 208, 202); + } + .ethical-sidebar ul { + list-style-image: initial; + } + .ethical-sidebar ul li { + background-color: rgb(4, 62, 97); + color: rgb(216, 212, 207); + } + .ethical-sidebar a, + .ethical-sidebar a:visited, + .ethical-sidebar a:hover, + .ethical-sidebar a:active, + .ethical-footer a, + .ethical-footer a:visited, + .ethical-footer a:hover, + .ethical-footer a:active { + color: rgb(211, 208, 202); + text-decoration-color: initial !important; + border-bottom-color: initial !important; + } + .ethical-callout a { + color: rgb(166, 159, 147) !important; + text-decoration-color: initial !important; + } + .ethical-fixedfooter { + background-color: rgb(27, 29, 30); + border-top-color: rgb(117, 109, 96); + color: rgb(188, 182, 173); + } + .ethical-fixedfooter .ethical-text::before { + background-color: rgb(49, 112, 51); + color: rgb(216, 212, 207); + } + .ethical-fixedfooter .ethical-callout { + color: rgb(171, 164, 153); + } + .ethical-fixedfooter a, + .ethical-fixedfooter a:hover, + .ethical-fixedfooter a:active, + .ethical-fixedfooter a:visited { + color: rgb(188, 182, 173); + text-decoration-color: initial; + } + .ethical-rtd .ethical-sidebar { + color: rgb(182, 176, 167); + } + .ethical-alabaster a.ethical-image-link { + border-color: initial !important; + } + .ethical-dark-theme .ethical-sidebar { + background-color: rgb(46, 50, 52); + border-color: rgb(114, 106, 93); + color: rgb(189, 183, 174) !important; + } + .ethical-dark-theme a, + .ethical-dark-theme a:visited { + color: rgb(205, 200, 194) !important; + border-bottom-color: initial !important; + } + .ethical-dark-theme .ethical-callout a { + color: rgb(182, 176, 167) !important; + } + .keep-us-sustainable { + border-color: rgb(104, 158, 45); + } + .keep-us-sustainable a, + .keep-us-sustainable a:hover, + .keep-us-sustainable a:visited { + text-decoration-color: initial; + } + .wy-nav-side .keep-us-sustainable { + color: rgb(182, 176, 167); + } + .wy-nav-side .keep-us-sustainable a { + color: rgb(209, 205, 199); + } + [data-ea-publisher].loaded a, + [data-ea-type].loaded a { + text-decoration-color: initial; + } + [data-ea-publisher].loaded .ea-content, + [data-ea-type].loaded .ea-content { + background-image: initial; + background-color: rgba(0, 0, 0, 0.03); + color: rgb(181, 174, 164); + } + [data-ea-publisher].loaded .ea-content a:link, + [data-ea-type].loaded .ea-content a:link { + color: rgb(181, 174, 164); + } + [data-ea-publisher].loaded .ea-content a:visited, + [data-ea-type].loaded .ea-content a:visited { + color: rgb(181, 174, 164); + } + [data-ea-publisher].loaded .ea-content a:hover, + [data-ea-type].loaded .ea-content a:hover { + color: rgb(192, 186, 178); + } + [data-ea-publisher].loaded .ea-content a:active, + [data-ea-type].loaded .ea-content a:active { + color: rgb(192, 186, 178); + } + [data-ea-publisher].loaded .ea-content a strong, + [data-ea-publisher].loaded .ea-content a b, + [data-ea-type].loaded .ea-content a strong, + [data-ea-type].loaded .ea-content a b { + color: rgb(64, 180, 248); + } + [data-ea-publisher].loaded .ea-callout a:link, + [data-ea-type].loaded .ea-callout a:link { + color: rgb(169, 162, 151); + } + [data-ea-publisher].loaded .ea-callout a:visited, + [data-ea-type].loaded .ea-callout a:visited { + color: rgb(169, 162, 151); + } + [data-ea-publisher].loaded .ea-callout a:hover, + [data-ea-type].loaded .ea-callout a:hover { + color: rgb(181, 174, 164); + } + [data-ea-publisher].loaded .ea-callout a:active, + [data-ea-type].loaded .ea-callout a:active { + color: rgb(181, 174, 164); + } + [data-ea-publisher].loaded .ea-callout a strong, + [data-ea-publisher].loaded .ea-callout a b, + [data-ea-type].loaded .ea-callout a strong, + [data-ea-type].loaded .ea-callout a b { + color: rgb(64, 180, 248); + } + [data-ea-publisher].loaded.dark .ea-content, + [data-ea-type].loaded.dark .ea-content { + background-image: initial; + background-color: rgba(19, 21, 22, 0.05); + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.dark .ea-content a:link, + [data-ea-type].loaded.dark .ea-content a:link { + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.dark .ea-content a:visited, + [data-ea-type].loaded.dark .ea-content a:visited { + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.dark .ea-content a:hover, + [data-ea-type].loaded.dark .ea-content a:hover { + color: rgb(212, 208, 202); + } + [data-ea-publisher].loaded.dark .ea-content a:active, + [data-ea-type].loaded.dark .ea-content a:active { + color: rgb(212, 208, 202); + } + [data-ea-publisher].loaded.dark .ea-content a strong, + [data-ea-publisher].loaded.dark .ea-content a b, + [data-ea-type].loaded.dark .ea-content a strong, + [data-ea-type].loaded.dark .ea-content a b { + color: rgb(85, 188, 249); + } + [data-ea-publisher].loaded.dark .ea-callout a:link, + [data-ea-type].loaded.dark .ea-callout a:link { + color: rgb(189, 184, 175); + } + [data-ea-publisher].loaded.dark .ea-callout a:visited, + [data-ea-type].loaded.dark .ea-callout a:visited { + color: rgb(189, 184, 175); + } + [data-ea-publisher].loaded.dark .ea-callout a:hover, + [data-ea-type].loaded.dark .ea-callout a:hover { + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.dark .ea-callout a:active, + [data-ea-type].loaded.dark .ea-callout a:active { + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.dark .ea-callout a strong, + [data-ea-publisher].loaded.dark .ea-callout a b, + [data-ea-type].loaded.dark .ea-callout a strong, + [data-ea-type].loaded.dark .ea-callout a b { + color: rgb(85, 188, 249); + } + @media (prefers-color-scheme: dark) { + [data-ea-publisher].loaded.adaptive .ea-content, + [data-ea-type].loaded.adaptive .ea-content { + background-image: initial; + background-color: rgba(19, 21, 22, 0.05); + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.adaptive .ea-content a:link, + [data-ea-type].loaded.adaptive .ea-content a:link { + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.adaptive .ea-content a:visited, + [data-ea-type].loaded.adaptive .ea-content a:visited { + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.adaptive .ea-content a:hover, + [data-ea-type].loaded.adaptive .ea-content a:hover { + color: rgb(212, 208, 202); + } + [data-ea-publisher].loaded.adaptive .ea-content a:active, + [data-ea-type].loaded.adaptive .ea-content a:active { + color: rgb(212, 208, 202); + } + [data-ea-publisher].loaded.adaptive .ea-content a strong, + [data-ea-publisher].loaded.adaptive .ea-content a b, + [data-ea-type].loaded.adaptive .ea-content a strong, + [data-ea-type].loaded.adaptive .ea-content a b { + color: rgb(85, 188, 249); + } + [data-ea-publisher].loaded.adaptive .ea-callout a:link, + [data-ea-type].loaded.adaptive .ea-callout a:link { + color: rgb(189, 184, 175); + } + [data-ea-publisher].loaded.adaptive .ea-callout a:visited, + [data-ea-type].loaded.adaptive .ea-callout a:visited { + color: rgb(189, 184, 175); + } + [data-ea-publisher].loaded.adaptive .ea-callout a:hover, + [data-ea-type].loaded.adaptive .ea-callout a:hover { + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.adaptive .ea-callout a:active, + [data-ea-type].loaded.adaptive .ea-callout a:active { + color: rgb(200, 196, 189); + } + [data-ea-publisher].loaded.adaptive .ea-callout a strong, + [data-ea-publisher].loaded.adaptive .ea-callout a b, + [data-ea-type].loaded.adaptive .ea-callout a strong, + [data-ea-type].loaded.adaptive .ea-callout a b { + color: rgb(85, 188, 249); + } + } + [data-ea-publisher].loaded .ea-content, + [data-ea-type].loaded .ea-content { + border-color: initial; + box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 3px; + } + [data-ea-publisher].loaded.raised .ea-content, + [data-ea-type].loaded.raised .ea-content { + border-color: initial; + box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 3px; + } + [data-ea-publisher].loaded.bordered .ea-content, + [data-ea-type].loaded.bordered .ea-content { + border-color: rgba(84, 91, 95, 0.04); + box-shadow: none; + } + [data-ea-publisher].loaded.bordered.dark .ea-content, + [data-ea-type].loaded.bordered.dark .ea-content { + border-color: rgba(123, 114, 101, 0.07); + } + @media (prefers-color-scheme: dark) { + [data-ea-publisher].loaded.bordered.adaptive .ea-content, + [data-ea-type].loaded.bordered.adaptive .ea-content { + border-color: rgba(123, 114, 101, 0.07); + } + } + [data-ea-publisher].loaded.flat .ea-content, + [data-ea-type].loaded.flat .ea-content { + border-color: initial; + box-shadow: none; + } + .vimvixen-hint { + background-color: rgb(98, 66, 0) !important; + border-color: rgb(170, 138, 15) !important; + color: rgb(237, 221, 175) !important; + } + #edge-translate-panel-body { + color: var(--darkreader-text--darkreader-neutral-text) !important; + } + } + @media (prefers-color-scheme: light) { + .wy-menu-vertical li.toctree-l2.current a, + .wy-menu-vertical li.toctree-l3.current a { + background-color: rgb(54, 59, 61); + } + } + .rst-other-versions a { + border-color: initial; + } + .ethical-sidebar .ethical-image-link, + .ethical-footer .ethical-image-link { + border-color: initial; + } + .ethical-sidebar, + .ethical-footer { + background-color: rgb(34, 36, 38); + border-color: rgb(62, 68, 70); + color: rgb(226, 223, 219); + } + .ethical-sidebar ul { + list-style-image: initial; + } + .ethical-sidebar ul li { + background-color: rgb(5, 77, 121); + color: rgb(232, 230, 227); + } + .ethical-sidebar a, + .ethical-sidebar a:visited, + .ethical-sidebar a:hover, + .ethical-sidebar a:active, + .ethical-footer a, + .ethical-footer a:visited, + .ethical-footer a:hover, + .ethical-footer a:active { + color: rgb(226, 223, 219); + text-decoration-color: initial !important; + border-bottom-color: initial !important; + } + .ethical-callout a { + color: rgb(161, 153, 141) !important; + text-decoration-color: initial !important; + } + .ethical-fixedfooter { + background-color: rgb(34, 36, 38); + border-top-color: rgb(66, 72, 74); + color: rgb(192, 186, 178); + } + .ethical-fixedfooter .ethical-text::before { + background-color: rgb(61, 140, 64); + color: rgb(232, 230, 227); + } + .ethical-fixedfooter .ethical-callout { + color: rgb(168, 160, 149); + } + .ethical-fixedfooter a, + .ethical-fixedfooter a:hover, + .ethical-fixedfooter a:active, + .ethical-fixedfooter a:visited { + color: rgb(192, 186, 178); + text-decoration-color: initial; + } + .ethical-rtd .ethical-sidebar { + color: rgb(184, 178, 169); + } + .ethical-alabaster a.ethical-image-link { + border-color: initial !important; + } + .ethical-dark-theme .ethical-sidebar { + background-color: rgb(58, 62, 65); + border-color: rgb(75, 81, 84); + color: rgb(193, 188, 180) !important; + } + .ethical-dark-theme a, + .ethical-dark-theme a:visited { + color: rgb(216, 213, 208) !important; + border-bottom-color: initial !important; + } + .ethical-dark-theme .ethical-callout a { + color: rgb(184, 178, 169) !important; + } + .keep-us-sustainable { + border-color: rgb(87, 133, 38); + } + .keep-us-sustainable a, + .keep-us-sustainable a:hover, + .keep-us-sustainable a:visited { + text-decoration-color: initial; + } + .wy-nav-side .keep-us-sustainable { + color: rgb(184, 178, 169); + } + .wy-nav-side .keep-us-sustainable a { + color: rgb(222, 219, 215); + } + + /* Override Style */ + .vimvixen-hint { + background-color: #7b5300 !important; + border-color: #d8b013 !important; + color: #f3e8c8 !important; + } + ::placeholder { + opacity: 0.5 !important; + } + a[href="https://coinmarketcap.com/"] > svg[width="94"][height="16"] > path { + fill: var(--darkreader-neutral-text) !important; + } + #edge-translate-panel-body, + .MuiTypography-body1 { + color: var(--darkreader-neutral-text) !important; + } + gr-main-header { + background-color: #0f3a48 !important; + } + embed[type="application/pdf"] { filter: invert(100%) contrast(90%); } +} diff --git a/doc/manual/resources/css/light.css b/doc/manual/resources/css/light.css new file mode 100644 index 000000000..53599fd73 --- /dev/null +++ b/doc/manual/resources/css/light.css @@ -0,0 +1,10 @@ +@media (prefers-color-scheme: light) { + + .wy-menu-vertical li.toctree-l2.current a, + .wy-menu-vertical li.toctree-l3.current a { + background-color: #c9c9c9; + } + pre.man { + font-size: 0.9em; + } +} diff --git a/doc/manual/resources/favicon.ico b/doc/manual/resources/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..de06a94baa607388a6d718d754e59d3bcc2cd6fd GIT binary patch literal 15086 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

&n$G(r3OT1utpM8CtU9 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 literal 0 HcmV?d00001 diff --git a/doc/manual/resources/nsd-duotone-white.svg b/doc/manual/resources/nsd-duotone-white.svg new file mode 100644 index 000000000..71e993950 --- /dev/null +++ b/doc/manual/resources/nsd-duotone-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/doc/manual/running/interfaces.rst b/doc/manual/running/interfaces.rst new file mode 100644 index 000000000..a1291019f --- /dev/null +++ b/doc/manual/running/interfaces.rst @@ -0,0 +1,28 @@ +Interfaces +========== + +NSD will by default bind itself to the system default interface and service IPv4 +and if available also IPv6. It is possible to service only IPv4 or IPv6 using +the :option:`-4`, :option:`-6` command line options, or the ``ip4-only`` and +``ip6-only`` config file options. + +The command line option :option:`-a` and config file option ip-address can be +given to bind to specific interfaces. Multiple interfaces can be specified, +which is useful for two reasons: + +- The specific interface bound will result in the OS bypassing routing tables + for the interface selection. This results in a small performance gain. It is + not the performance gain that is the problem: sometimes the routing tables can + give the wrong answer, see the next point. +- The answer will be routed via the interface the query came from. This makes + sure that the return address on the DNS replies is the same as the query was + sent to. Many resolvers require the source address of the replies to be + correct. The ``ip-address:`` option is easier than configuring the OS routing + table to return the DNS replies via the correct interface. + +The above means that even for systems with multiple interfaces where you intend +to provide DNS service to all interfaces, it is prudent to specify all the +interfaces as ``ip-address`` config file options. + +With the config file option ``ip-transparent`` you can allow NSD to bind to +non-local addresses. \ No newline at end of file diff --git a/doc/manual/running/logging.rst b/doc/manual/running/logging.rst new file mode 100644 index 000000000..39f091d31 --- /dev/null +++ b/doc/manual/running/logging.rst @@ -0,0 +1,27 @@ +Logging +======= + +NSD does not provide any DNS logging. We believe that this is a separate task +and has to be done independently from the core operation. This decision was taken +in order to keep NSD focused and minimise its complexity. +It is better to leave logging and tracing to separate dedicated tools. Do note, +however, that NSD can be compiled with support for DNSTAP (see ``nsd.conf(5)``). + +The `CAIDA dnsstat tool `_ can +easily be configured and/or modified to suit local statistics requirements +without any danger of affecting the name server itself. We have run ``dnsstat`` +on the same machine as NSD, and we would recommend using a multiprocessor if +performance is an issue. Of course, ``dnsstat`` can also run on a separate +machine that has MAC layer access to the network of the server. + +The :command:`nsd-control` tool can output some statistics, with +:command:`nsd-control stats` and :command:`nsd-control stats_noreset`. In +`contrib/nsd_munin_ +`_ there is a +Munin grapher plugin that uses it. The output of :command:`nsd-control stats` +is easy to read (text only) with scripts. The output values are documented on +the :command:`nsd-control` man page. + +Another available tool is `dnstop +`_, which displays DNS +statistics on your network. diff --git a/doc/manual/running/tuning.rst b/doc/manual/running/tuning.rst new file mode 100644 index 000000000..1db997fb4 --- /dev/null +++ b/doc/manual/running/tuning.rst @@ -0,0 +1,128 @@ +Tuning +====== + +In version 4.3.0 of NSD, additional functionality was added to increase +performance even more. Most notably, this includes processor affinity. + +NSD is performant by design because it matters when operators serve hundreds of +thousands or even millions of queries per second. We strive to make the right +choices by default, like enabling the use of ``libevent`` at the configure stage +to ensure the most efficient event mechanism is used on a given platform. e.g. +``epoll`` on Linux and ``kqueue`` on FreeBSD. Switches are available for +operators who know the implementation on their system behaves correctly, like +enabling the use of ``recvmmsg`` at the configure stage +(:option:`--enable-recvmmsg`) to read multiple messages from a socket in one +system call. + +By default NSD forks (only) one server. Modern computer systems however, may +have more than one processor, and usually have more than one core per processor. +The easiest way to scale up performance is to simply fork more servers by +configuring server-count: to match the number of cores available in the system +so that more queries can be answered simultaneously. If the operating system +supports it, ensure ``reuseport:`` is set to ``yes`` to distribute incoming +packets evenly across server processes to balance the load. + +A couple of other options that the operator may want to consider: + +1. Memory usage can be lowered (around 50%) by using zone files and disable + the on-disk database by setting ``database: ""``. +2. TCP capacity can be significantly increased by setting ``tcp-count: 1000`` + and ``tcp-timeout: 3``. Set ``tcp-reject-overflow: yes`` to prevent the + kernel connection queue from growing. + +Processor Affinity +------------------ + +The aforementioned settings provide an easy way to increase performance without +the need for in-depth knowledge of the hardware. For operators that require even +more throughput ``cpu-affinity`` is available. + +The operating system’s scheduling-algorithm determines which core a given task +is allocated to. Processors build up state — e.g. by keeping frequently accessed +data in cache memory — for the task that it is currently executing. Whenever a +task switches cores, performance is degraded because the core it switched to has +yet to build up said state. While this scheduling-algorithm works just fine for +general-purpose computing, operators may want to designate a set of cores for +best performance. The ``cpu-affinity`` family of configuration options was added +to NSD specifically for that purpose. + +Processor affinity is currently supported on Linux and FreeBSD. Other operating +systems may be supported in the future, but not all operating systems that can +run NSD support CPU pinning. To fully benefit from this feature, one must first +determine which cores should be allocated to NSD. This requires some knowledge +of the underlying hardware, but generally speaking every process should run on a +dedicated core and the use of Hyper-Threading cores should be avoided to prevent +resource contention. List every core designated to NSD in ``cpu-affinity`` and +bind each server process to a specific core using ``server--cpu-affinity`` +and ``xfrd-cpu-affinity`` to improve L1/L2 cache hit rates and reduce pipeline +stalls/flushes. + +.. code:: text + + server: + server-count: 2 + cpu-affinity: 0 1 2 + server-1-cpu-affinity: 0 + server-2-cpu-affinity: 1 + xfrd-cpu-affinity: 2 + +Partition Sockets +----------------- + +``ip-address:`` options in the ``server:`` clause can be configured per server +or set of servers. Sockets configured for a specific server are closed by other +servers on startup. This improves performance if a large number of sockets are +scanned using ``select/poll`` and avoids waking up multiple servers when a +packet comes in, known as the `thundering herd problem +`_. Though both problems +are solved using a modern kernel and a modern I/O event mechanism, there is one +other reason to partition sockets, explained below. + +.. code:: text + + server: + ip-address: 192.0.2.1 servers=1 + +Bind to Device +-------------- + +``ip-address:`` options in the server: clause can now also be configured to bind +directly to the network interface device on Linux (``bindtodevice=yes``) and to +use a specific routing table on FreeBSD (``setfib=``). These were added to +ensure UDP responses go out over the same interface the query came in on if +there are multiple interfaces configured on the same subnet, but there may be +some performance benefits as well as the kernel does not have to go through the +network interface selection process. + +.. code:: text + + server: + ip-address: 192.0.2.1 bindtodevice=yes setfib= + +.. Note:: FreeBSD does not create extra routing tables on demand. Consult the + FreeBSD Handbook, forums, etc. for information on how to configure + multiple routing tables. + +Combining Options +----------------- + +Field tests have shown best performance is achieved by combining the +aforementioned options so that each network interface is essentially bound to a +specific core. To do so, use one IP address per server process, pin that process +to a designated core and bind directly to the network interface device. + +.. code:: text + + server: + server-count: 2 + cpu-affinity: 0 1 2 + server-1-cpu-affinity: 0 + server-2-cpu-affinity: 1 + xfrd-cpu-affinity: 2 + ip-address: 192.0.2.1 servers=1 bindtodevice=yes setfib=1 + ip-address: 192.0.2.2 servers=2 bindtodevice=yes setfib=2 + +The above snippet serves as an example on how to use the configuration options. +Which cores, IP addresses and routing tables are best used depends entirely on +the hardware and network layout. Be sure to test extensively before using the +options. \ No newline at end of file diff --git a/doc/manual/running/using-tsig.rst b/doc/manual/running/using-tsig.rst new file mode 100644 index 000000000..59c946b80 --- /dev/null +++ b/doc/manual/running/using-tsig.rst @@ -0,0 +1,36 @@ +Using Transaction Signature (TSIG) +================================== + +NSD supports Transaction Signature (TSIG) for zone transfer and for notify +sending and receiving, for any query to the server. + +TSIG keys are based on shared secrets. These must be configured in the config +file. To keep the secret in a separate file use ``include: "filename"`` to +include that file. + +An example TSIG key named :file:`sec1_key`: + +.. code:: text + + key: + name: "sec1_key" + algorithm: hmac-md5 + secret: "6KM6qiKfwfEpamEq72HQdA==" + +This key can then be used for any query to the NSD server. NSD will check if the +signature is valid, and if so, return a signed answer. Unsigned queries will be +given unsigned replies. + +The key can be used to restrict the access control lists, for example to only +allow zone transfer with the key, by listing the key name on the access control +line. + +.. code:: text + + # provides AXFR to the subnet when TSIG is used. + provide-xfr: 10.11.12.0/24 sec1_key + # allow only notifications that are signed + allow-notify: 192.168.0.0/16 sec1_key + +If the TSIG key name is used in ``notify`` or ``request-xfr`` lines, the key is +used to sign the request/notification messages. \ No newline at end of file diff --git a/doc/manual/running/zone-expiry.rst b/doc/manual/running/zone-expiry.rst new file mode 100644 index 000000000..19317e28d --- /dev/null +++ b/doc/manual/running/zone-expiry.rst @@ -0,0 +1,40 @@ +Zone Expiry of Secondary Zones +============================== + +NSD will keep track of the status of secondary zones, according to the timing +values in the SOA record for the zone. When the refresh time of a zone is +reached, the serial number is checked and a zone transfer is started if the zone +has changed. Each primary server is tried in turn. + +Primary zones cannot expire so they are always served. Zones are interpreted +as primary zones if they have no ``request-xfr:`` statements in the config file. + +After the expire timeout (from the SOA record at the zone apex) is reached, the +zone becomes expired. NSD will return ``SERVFAIL`` for expired zones, and will +attempt to perform a zone transfer from any of the primaries. After a zone +transfer succeeds, or if the primary indicates that the SOA serial number is +still the same, the zone returns to an operational state. + +In contrast with e.g. BIND, the inception time for a secondary zone is stored on +disk (in ``xfrdfile: "xfrd.state"``), together with timeouts. If a secondary +zone acquisition time is recent enough, NSD can start serving a +zone immediately on loading, without querying the primary server. + +If a secondary zone has expired and no primaries can be reached, but NSD +should still serve the zone, delete the :file:`xfrd.state` +file, but leave the zone file for the zone intact. Make sure to stop NSD before +you delete the file, as NSD writes it on exit. Upon loading NSD will treat the +zone file that you as operator have provided as recent and will serve the zone. +Even though NSD will start to serve the zone immediately, the zone will expire +after the timeout is reached again. NSD will also attempt to confirm that you +have provided the correct data by polling the primaries. So when the primary +servers come back up, it will transfer the updated zone within seconds. + +It is possible to provide zone files for both primary and secondary +zones via alternative means (say from email or rsync). Reload with SIGHUP or +:command:`nsd-control reload` to read the new zone file contents into the name +database. When this is done the new zone will be served. For primary zones, NSD +will issue notifications to all configured ``notify:`` targets. For secondary +zones the above happens; NSD attempts to validate the zone from the primary +(checking its SOA serial number). diff --git a/doc/manual/zonefile.rst b/doc/manual/zonefile.rst new file mode 100644 index 000000000..ca743757f --- /dev/null +++ b/doc/manual/zonefile.rst @@ -0,0 +1,39 @@ +Zonefile example +================ + +On this page we give an example of a basic zone file and it's contents. + +We recommend using the :command:`nsd-checkzone` tool to verify that you have a working zone. + +Creating a zone +--------------- + +A minimal zone needs exactly one SOA (Source Of Authority) and one or more NS (Name Server) records. Refer to appropriate documentation of you need to learn about DNS basics. + +.. code:: bash + + $ORIGIN example.com. + $TTL 86400 ; default time-to-live for this zone + + example.com. IN SOA ns.example.com. noc.dns.example.org. ( + 2020080302 ;Serial + 7200 ;Refresh + 3600 ;Retry + 1209600 ;Expire + 3600 ;Negative response caching TTL + ) + + ; The nameservers that are authoritative for this zone. + NS example.com. + + ; A and AAAA records are for IPv4 and IPv6 addresses respectively + example.com. A 192.0.2.1 + AAAA 2001:db8::3 + + ; A CNAME redirects from www.example.com to example.com + www CNAME example.com. + + mail MX 10 example.com. + + +.. could add this structure eventually: