-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ fc7503a 🚀
- Loading branch information
1 parent
ef5c0fd
commit 443e4b8
Showing
26 changed files
with
958 additions
and
158 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
/*! | ||
* | ||
* IPython notebook | ||
* | ||
*/ | ||
/* CSS font colors for translated ANSI escape sequences */ | ||
/* The color values are a mix of | ||
http://www.xcolors.net/dl/baskerville-ivorylight and | ||
http://www.xcolors.net/dl/euphrasia */ | ||
.ansi-black-fg { | ||
color: #3E424D; | ||
} | ||
.ansi-black-bg { | ||
background-color: #3E424D; | ||
} | ||
.ansi-black-intense-fg { | ||
color: #282C36; | ||
} | ||
.ansi-black-intense-bg { | ||
background-color: #282C36; | ||
} | ||
.ansi-red-fg { | ||
color: #E75C58; | ||
} | ||
.ansi-red-bg { | ||
background-color: #E75C58; | ||
} | ||
.ansi-red-intense-fg { | ||
color: #B22B31; | ||
} | ||
.ansi-red-intense-bg { | ||
background-color: #B22B31; | ||
} | ||
.ansi-green-fg { | ||
color: #00A250; | ||
} | ||
.ansi-green-bg { | ||
background-color: #00A250; | ||
} | ||
.ansi-green-intense-fg { | ||
color: #007427; | ||
} | ||
.ansi-green-intense-bg { | ||
background-color: #007427; | ||
} | ||
.ansi-yellow-fg { | ||
color: #DDB62B; | ||
} | ||
.ansi-yellow-bg { | ||
background-color: #DDB62B; | ||
} | ||
.ansi-yellow-intense-fg { | ||
color: #B27D12; | ||
} | ||
.ansi-yellow-intense-bg { | ||
background-color: #B27D12; | ||
} | ||
.ansi-blue-fg { | ||
color: #208FFB; | ||
} | ||
.ansi-blue-bg { | ||
background-color: #208FFB; | ||
} | ||
.ansi-blue-intense-fg { | ||
color: #0065CA; | ||
} | ||
.ansi-blue-intense-bg { | ||
background-color: #0065CA; | ||
} | ||
.ansi-magenta-fg { | ||
color: #D160C4; | ||
} | ||
.ansi-magenta-bg { | ||
background-color: #D160C4; | ||
} | ||
.ansi-magenta-intense-fg { | ||
color: #A03196; | ||
} | ||
.ansi-magenta-intense-bg { | ||
background-color: #A03196; | ||
} | ||
.ansi-cyan-fg { | ||
color: #60C6C8; | ||
} | ||
.ansi-cyan-bg { | ||
background-color: #60C6C8; | ||
} | ||
.ansi-cyan-intense-fg { | ||
color: #258F8F; | ||
} | ||
.ansi-cyan-intense-bg { | ||
background-color: #258F8F; | ||
} | ||
.ansi-white-fg { | ||
color: #C5C1B4; | ||
} | ||
.ansi-white-bg { | ||
background-color: #C5C1B4; | ||
} | ||
.ansi-white-intense-fg { | ||
color: #A1A6B2; | ||
} | ||
.ansi-white-intense-bg { | ||
background-color: #A1A6B2; | ||
} | ||
.ansi-default-inverse-fg { | ||
color: #FFFFFF; | ||
} | ||
.ansi-default-inverse-bg { | ||
background-color: #000000; | ||
} | ||
.ansi-bold { | ||
font-weight: bold; | ||
} | ||
.ansi-underline { | ||
text-decoration: underline; | ||
} | ||
/* The following styles are deprecated an will be removed in a future version */ | ||
.ansibold { | ||
font-weight: bold; | ||
} | ||
.ansi-inverse { | ||
outline: 0.5px dotted; | ||
} | ||
/* use dark versions for foreground, to improve visibility */ | ||
.ansiblack { | ||
color: black; | ||
} | ||
.ansired { | ||
color: darkred; | ||
} | ||
.ansigreen { | ||
color: darkgreen; | ||
} | ||
.ansiyellow { | ||
color: #c4a000; | ||
} | ||
.ansiblue { | ||
color: darkblue; | ||
} | ||
.ansipurple { | ||
color: darkviolet; | ||
} | ||
.ansicyan { | ||
color: steelblue; | ||
} | ||
.ansigray { | ||
color: gray; | ||
} | ||
/* and light for background, for the same reason */ | ||
.ansibgblack { | ||
background-color: black; | ||
} | ||
.ansibgred { | ||
background-color: red; | ||
} | ||
.ansibggreen { | ||
background-color: green; | ||
} | ||
.ansibgyellow { | ||
background-color: yellow; | ||
} | ||
.ansibgblue { | ||
background-color: blue; | ||
} | ||
.ansibgpurple { | ||
background-color: magenta; | ||
} | ||
.ansibgcyan { | ||
background-color: cyan; | ||
} | ||
.ansibggray { | ||
background-color: gray; | ||
} |
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,10 @@ | ||
/* Input cells */ | ||
.input code, .input pre { | ||
background-color: #3333aa11; | ||
} | ||
|
||
/* Output cells */ | ||
.output pre { | ||
background-color: #ececec80; | ||
padding: 10px; | ||
} |
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,36 @@ | ||
/* Pretty Pandas Dataframes */ | ||
/* Supports mkdocs-material color variables */ | ||
.dataframe { | ||
border: 0; | ||
font-size: smaller; | ||
} | ||
.dataframe tr { | ||
border: none; | ||
background: var(--md-code-bg-color, #ffffff); | ||
} | ||
.dataframe tr:nth-child(even) { | ||
background: var(--md-default-bg-color, #f5f5f5); | ||
} | ||
.dataframe tr:hover { | ||
background-color: var(--md-footer-bg-color--dark, #e1f5fe); | ||
} | ||
|
||
.dataframe thead th { | ||
background: var(--md-default-bg-color, #ffffff); | ||
border-bottom: 1px solid #aaa; | ||
font-weight: bold; | ||
} | ||
.dataframe th { | ||
border: none; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
} | ||
|
||
.dataframe td{ | ||
/* background: #fff; */ | ||
border: none; | ||
text-align: right; | ||
min-width:5em; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
} |
Oops, something went wrong.