Skip to content

Commit

Permalink
Fix bibliography css
Browse files Browse the repository at this point in the history
  • Loading branch information
ddemidov committed Jan 12, 2016
1 parent 0da6fab commit 6126407
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.label {
color: #333333;
}

table.citation td {
float: left;
}
5 changes: 5 additions & 0 deletions docs/_templates/layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{# Import the theme's layout. #}
{% extends "!layout.html" %}

{# Custom CSS overrides #}
{% set bootswatch_css_custom = ['_static/custom.css'] %}
2 changes: 1 addition & 1 deletion docs/bibliography.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ Bibliography
============

.. [Stue99] Stüben, Klaus. Algebraic multigrid (AMG): an introduction with applications. GMD-Forschungszentrum Informationstechnik, 1999.
.. [TrOS01] U. Trottenberg, C. Oosterlee, and A. Schüller. Multigrid. Academic Press, London, 2001.
.. [TrOS01] Trottenberg, U., Oosterlee, C., and Schüller, A. Multigrid. Academic Press, London, 2001.
.. [Saad03] Saad, Yousef. Iterative methods for sparse linear systems. Siam, 2003.
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
breathe_default_members = ['members']

# Add any paths that contain templates here, relative to this directory.
#templates_path = ['_templates']
templates_path = ['_templates']

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
Expand Down Expand Up @@ -132,7 +132,7 @@
# a list of builtin themes.
html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()
html_theme = 'bootstrap'
html_theme_options = {'bootswatch_theme': 'flatly'}
html_theme_options = {'bootswatch_theme': 'cosmo'}

# Add any paths that contain custom themes here, relative to this directory.
#html_theme_path = []
Expand All @@ -156,7 +156,7 @@
# 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 = ['_static']
html_static_path = ['_static']

# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
Expand Down

0 comments on commit 6126407

Please sign in to comment.