Skip to content

Commit

Permalink
Deploying to gh-pages from @ fc7503a 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspinder committed Sep 6, 2024
1 parent ef5c0fd commit 443e4b8
Show file tree
Hide file tree
Showing 26 changed files with 958 additions and 158 deletions.
12 changes: 9 additions & 3 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@



<link rel="stylesheet" href="/causal-validation/css/ansi-colours.css">

<link rel="stylesheet" href="/causal-validation/css/jupyter-cells.css">

<link rel="stylesheet" href="/causal-validation/css/pandas-dataframe.css">

<script>__md_scope=new URL("/causal-validation/",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>


Expand Down Expand Up @@ -272,7 +278,7 @@


<li class="md-nav__item">
<a href="/causal-validation/_examples/basic/" class="md-nav__link">
<a href="/causal-validation/examples/basic/" class="md-nav__link">


<span class="md-ellipsis">
Expand All @@ -293,7 +299,7 @@


<li class="md-nav__item">
<a href="/causal-validation/_examples/placebo_test/" class="md-nav__link">
<a href="/causal-validation/examples/placebo_test/" class="md-nav__link">


<span class="md-ellipsis">
Expand All @@ -314,7 +320,7 @@


<li class="md-nav__item">
<a href="/causal-validation/_examples/azcausal/" class="md-nav__link">
<a href="/causal-validation/examples/azcausal/" class="md-nav__link">


<span class="md-ellipsis">
Expand Down
174 changes: 174 additions & 0 deletions css/ansi-colours.css
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;
}
10 changes: 10 additions & 0 deletions css/jupyter-cells.css
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;
}
36 changes: 36 additions & 0 deletions css/pandas-dataframe.css
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;
}
Loading

0 comments on commit 443e4b8

Please sign in to comment.