Skip to content

Commit

Permalink
Merge 4bdde5c into fe2910f
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-f committed Feb 7, 2015
2 parents fe2910f + 4bdde5c commit 7c82b13
Show file tree
Hide file tree
Showing 5 changed files with 533 additions and 418 deletions.
5 changes: 5 additions & 0 deletions README.md
Expand Up @@ -177,6 +177,11 @@ or datum is above or below the mean.
A [standard normal table](http://en.wikipedia.org/wiki/Standard_normal_table) from
which to pull values of Φ (phi).

### .error_function(x)

Calculate a numerical approximation to the Gaussian error function instead of
looking up values in a table.

## Regression

### .linear_regression()
Expand Down
24 changes: 18 additions & 6 deletions docs/docco.css
Expand Up @@ -21,11 +21,11 @@
}

@font-face {
font-family: 'novecento-bold';
src: url('public/fonts/novecento-bold.eot');
src: url('public/fonts/novecento-bold.eot?#iefix') format('embedded-opentype'),
url('public/fonts/novecento-bold.woff') format('woff'),
url('public/fonts/novecento-bold.ttf') format('truetype');
font-family: 'roboto-black';
src: url('public/fonts/roboto-black.eot');
src: url('public/fonts/roboto-black.eot?#iefix') format('embedded-opentype'),
url('public/fonts/roboto-black.woff') format('woff'),
url('public/fonts/roboto-black.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
Expand Down Expand Up @@ -67,14 +67,17 @@ h1, h2, h3, h4, h5, h6 {
color: #112233;
line-height: 1em;
font-weight: normal;
font-family: "novecento-bold";
font-family: "roboto-black";
text-transform: uppercase;
margin: 30px 0 15px 0;
}

h1 {
margin-top: 40px;
}
h2 {
font-size: 1.26em;
}

hr {
border: 0;
Expand Down Expand Up @@ -180,9 +183,18 @@ ul.sections > li > div {
display: block;
}

#jump_page_wrapper{
position: fixed;
right: 0;
top: 0;
bottom: 0;
}

#jump_page {
padding: 5px 0 3px;
margin: 0 0 25px 25px;
max-height: 100%;
overflow: auto;
}

#jump_page .source {
Expand Down

0 comments on commit 7c82b13

Please sign in to comment.