diff --git a/sphinx/build/doctrees/Ohmpi.doctree b/sphinx/build/doctrees/Ohmpi.doctree index a25dad0562aa204b931e05ecfad31f71d9fef7d6..5a04ed933a0a03f90bd1243fbe5f78def38be404 100644 Binary files a/sphinx/build/doctrees/Ohmpi.doctree and b/sphinx/build/doctrees/Ohmpi.doctree differ diff --git a/sphinx/build/doctrees/environment.pickle b/sphinx/build/doctrees/environment.pickle index 02877dcfff88f32dc74eda23c2add293f80cfd29..97781525ab6a1cd84b4828426dea53485393360e 100644 Binary files a/sphinx/build/doctrees/environment.pickle and b/sphinx/build/doctrees/environment.pickle differ diff --git a/sphinx/build/html/_sources/Ohmpi.rst.txt b/sphinx/build/html/_sources/Ohmpi.rst.txt index f00143a04b3408311374c4c8cd128be651078b05..9eb52792be48c3ef115bcbf4ee0caaa0740d2595 100644 --- a/sphinx/build/html/_sources/Ohmpi.rst.txt +++ b/sphinx/build/html/_sources/Ohmpi.rst.txt @@ -34,8 +34,6 @@ OhmPi project | .. image:: logo_univ_mons.png | .. image:: ige.png | .. image:: logo-iris.jpg | +----------------------------------+-----------------------------------+-------------------------------+ - - **Citing OhmPi:** diff --git a/sphinx/build/html/_static/css/my_theme.css b/sphinx/build/html/_static/css/my_theme.css index e436a0c5e880517cc0d174d8855efca3f1cc7ad2..ea60c02cc0f3bd67a722817ef7adc49549f141ef 100644 --- a/sphinx/build/html/_static/css/my_theme.css +++ b/sphinx/build/html/_static/css/my_theme.css @@ -1,3 +1,6 @@ .wy-nav-content { max-width: 1200px !important; -} \ No newline at end of file +} + +.wy-side-nav-search, .wy-nav-top { + background: #00ff00; \ No newline at end of file diff --git a/sphinx/source/_static/css/my_theme.css b/sphinx/source/_static/css/my_theme.css index e436a0c5e880517cc0d174d8855efca3f1cc7ad2..f28d9d496f5195e69155b3af79bb4054c2a795d0 100644 --- a/sphinx/source/_static/css/my_theme.css +++ b/sphinx/source/_static/css/my_theme.css @@ -1,3 +1,6 @@ .wy-nav-content { -max-width: 1200px !important; -} \ No newline at end of file +max-width: 2000px !important; +} + +.wy-side-nav-search, .wy-nav-top { + background: #00ff00; \ No newline at end of file diff --git a/sphinx/source/conf.py b/sphinx/source/conf.py index e0df49f5544e993c8dda74f85cd6853ccd9320c0..803d3705b28c413470cba85220848998b722eb16 100644 --- a/sphinx/source/conf.py +++ b/sphinx/source/conf.py @@ -10,8 +10,8 @@ # 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 +import os +import sys # sys.path.insert(0, os.path.abspath('.')) import sphinx_rtd_theme @@ -29,13 +29,10 @@ release = 'open hardware resistivity-meter' # -- General configuration --------------------------------------------------- -# 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_rtd_theme',] + extensions = ['recommonmark'] -#extensions = ['sphinx_bootstrap_theme'] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -61,5 +58,7 @@ html_theme = 'sphinx_rtd_theme' # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] + + master_doc = 'index'