Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added styling for indentation of docs #3303

Merged
merged 1 commit into from
Jun 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions doc/source/_static/theme_overrides.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

.md-nav__link {
margin-left: 10px;
}

.md-nav span.caption {
margin-left: 0px !important;
}
7 changes: 6 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,12 @@
# 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"]

# override default theme width
html_context = {
"css_files": ["_static/theme_overrides.css",], # override wide tables in RTD theme
}

html_extra_path = ["_extra"]

Expand Down
3 changes: 3 additions & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ Seldon Core
Seldon Client <examples/seldon_client>
Server Examples <examples/server_examples>

.. image:: ./images/core-logo-small.png
:alt: Seldon logo
:align: center

An open source platform to deploy your machine learning models on Kubernetes at massive scale.

Expand Down