-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLN: Rename parameters and fix pandas issue
Avoid .values and use asarray Use params consistently in api
- Loading branch information
Showing
4 changed files
with
85 additions
and
6 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
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,73 @@ | ||
body { | ||
font-size: 14px; | ||
} | ||
|
||
.sidebar-toc { | ||
font-size: 13px; | ||
} | ||
|
||
blockquote { | ||
font-size: 14px; | ||
} | ||
|
||
code, pre, tt { | ||
font-size: 14px; | ||
font-family: Consolas, monospace; | ||
} | ||
|
||
code, tt { | ||
color: #428bca; | ||
} | ||
|
||
div.seealso { | ||
background-color: #f9f9f9; | ||
border: none; | ||
} | ||
|
||
.m { color: #05003b} /* Literal.Number */ | ||
.mf { color: #05003b } /* Literal.Number.Float */ | ||
.mh { color: #05003b } /* Literal.Number.Hex */ | ||
.mi { color: #05003b } /* Literal.Number.Integer */ | ||
.mo { color: #05003b } /* Literal.Number.Oct */ | ||
.il { color: #05003b } /* Literal.Number.Integer.Long */ | ||
|
||
.descname { font-size: 17px; color: #378ae2; } | ||
|
||
|
||
.output_area table { | ||
margin-left: 0; | ||
margin-right: auto; | ||
border: none; | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
color: black; | ||
table-layout: fixed; | ||
} | ||
.output_area thead { | ||
border-bottom: 1px solid black; | ||
vertical-align: bottom; | ||
} | ||
.output_area tr, | ||
.output_area th, | ||
.output_area td { | ||
text-align: right; | ||
vertical-align: middle; | ||
padding: 0.5em 0.5em; | ||
line-height: normal; | ||
white-space: normal; | ||
max-width: none; | ||
border: none; | ||
} | ||
.output_area th { | ||
font-weight: bold; | ||
} | ||
.output_area tbody tr:nth-child(odd) { | ||
background: #f5f5f5; | ||
} | ||
.output_area tbody tr:hover { | ||
background: rgba(66, 165, 245, 0.2); | ||
} | ||
|
||
.simpletable caption { font-weight: bold } | ||
|
||
.label { color: #333 } |
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,7 @@ | ||
{# Import the theme's layout. #} | ||
{% extends "!layout.html" %} | ||
|
||
{%- block extrahead %} | ||
{{ super() }} | ||
<link rel="stylesheet" href="{{ pathto('_static/css/overrides.css', 1) }}" type="text/css" /> | ||
{% endblock %} |