From 6a2ba25414a975e90f070418008f16ce33cd132d Mon Sep 17 00:00:00 2001 From: Joe Nelson Date: Fri, 25 Nov 2016 15:01:52 -0800 Subject: [PATCH] Custom CSS --- _static/css/custom.css | 3 +++ conf.py | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 _static/css/custom.css diff --git a/_static/css/custom.css b/_static/css/custom.css new file mode 100644 index 000000000..ee869c6da --- /dev/null +++ b/_static/css/custom.css @@ -0,0 +1,3 @@ +div.wy-menu.rst-pro { + display: none !important; +} diff --git a/conf.py b/conf.py index bcc453897..8479fd301 100644 --- a/conf.py +++ b/conf.py @@ -284,3 +284,8 @@ texinfo_documents = [ # If true, do not generate a @detailmenu in the "Top" node's menu. #texinfo_no_detailmenu = False + +# -- Custom setup --------------------------------------------------------- + +def setup(app): + app.add_stylesheet('css/custom.css')