From 12655e265a0428f49bf5f2d701cfe66d76c11676 Mon Sep 17 00:00:00 2001 From: Vitor Baptista Date: Wed, 13 Dec 2017 13:36:39 +0000 Subject: [PATCH] [#213] Fix custom CSS inclusion --- docs/_static/css/goodtables.css | 2 -- docs/conf.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/_static/css/goodtables.css b/docs/_static/css/goodtables.css index 83c2dba1..911052c8 100644 --- a/docs/_static/css/goodtables.css +++ b/docs/_static/css/goodtables.css @@ -1,5 +1,3 @@ -@import url("theme.css"); - body { font-family: frictionlessdata, Raleway, Helvetica Neue, Helvetica, Arial, sans-serif; text-rendering: optimizeLegibility; diff --git a/docs/conf.py b/docs/conf.py index 79951ec5..458f62f2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -98,7 +98,6 @@ 'logo_only': True, } -html_style = 'css/goodtables.css' html_logo = '_static/img/logo.svg' # Add any paths that contain custom static files (such as style sheets) here, @@ -174,3 +173,4 @@ def setup(app): 'enable_eval_rst': True, }, True) app.add_transform(AutoStructify) + app.add_stylesheet('css/goodtables.css')