From 46a474f1a8e7385c8861ee90ff55d646a5312683 Mon Sep 17 00:00:00 2001 From: Brett <27568879+BrettCleary@users.noreply.github.com> Date: Fri, 1 Sep 2023 13:06:22 -0700 Subject: [PATCH] add custom css --- docs/_static/css/custom.css | 1 + docs/conf.py | 6 ++++++ docs/steps.txt | 3 ++- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 docs/_static/css/custom.css diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css new file mode 100644 index 0000000..bd2c2b6 --- /dev/null +++ b/docs/_static/css/custom.css @@ -0,0 +1 @@ +@import 'theme.css'; diff --git a/docs/conf.py b/docs/conf.py index c7b4cef..7aa071c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -37,3 +37,9 @@ if read_the_docs_build: subprocess.call('doxygen', shell=True) + +# These paths are either relative to html_static_path +# or fully qualified paths (eg. https://...) +html_css_files = [ + 'css/custom.css', +] \ No newline at end of file diff --git a/docs/steps.txt b/docs/steps.txt index 2138d22..5978e3b 100644 --- a/docs/steps.txt +++ b/docs/steps.txt @@ -1,4 +1,5 @@ cd docs doxygen -make clean html +make clean +make html output is in _build/html/index.html \ No newline at end of file