-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
94 changed files
with
3,476 additions
and
1,667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.no-sidebar { | ||
display: none; | ||
} | ||
|
||
.card-text a { | ||
font-weight: 600; | ||
color: rgb(255, 26, 26); | ||
} | ||
|
||
.card-header p { | ||
font-size: large; | ||
font-weight: 600; | ||
} | ||
|
||
.navbar-brand img { | ||
height: 50px; | ||
} | ||
|
||
.navbar-brand { | ||
height: 75px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{% extends "pydata_sphinx_theme/layout.html" %} | ||
|
||
{% block docs_main %} | ||
{% if sidebars %} | ||
{% set content_col_class = "col-md-9 col-xl-7" %} | ||
{% else %} | ||
{# This customization to the no-sidebars case is why we override docs_main #} | ||
{% set content_col_class = "col-md-12" %} | ||
{% endif %} | ||
<main class="col-12 {{ content_col_class }} py-md-5 pl-md-5 pr-md-4 bd-content" role="main"> | ||
{% block docs_body %} | ||
<div> | ||
{% block body %} {% endblock %} | ||
</div> | ||
{% endblock %} | ||
{% if theme_show_prev_next %} | ||
{% include "prev-next.html" %} | ||
{% endif %} | ||
</main> | ||
{% endblock %} |
Oops, something went wrong.