-
Notifications
You must be signed in to change notification settings - Fork 230
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
jbloom
committed
Aug 22, 2016
1 parent
76702ff
commit a565fdb
Showing
1 changed file
with
125 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
<style> | ||
|
||
.rendered_html | ||
{ | ||
color: #2C5494; | ||
font-family: Ubuntu; | ||
font-size: 140%; | ||
line-height: 1.1; | ||
margin: 0.5em 0; | ||
} | ||
|
||
.title | ||
{ | ||
color: #498AF3; | ||
font-size: 250%; | ||
font-weight:bold; | ||
line-height: 1.2; | ||
margin: 10px 50px 10px; | ||
} | ||
|
||
.subtitle | ||
{ | ||
color: #386BBC; | ||
font-size: 180%; | ||
font-weight:bold; | ||
line-height: 1.2; | ||
margin: 20px 50px 20px; | ||
} | ||
|
||
.slide-header, p.slide-header | ||
{ | ||
color: #498AF3; | ||
font-size: 200%; | ||
font-weight:bold; | ||
margin: 0px 20px 10px; | ||
page-break-before: always; | ||
text-align: center; | ||
} | ||
|
||
.rendered_html h1 | ||
{ | ||
color: #498AF3; | ||
line-height: 1.2; | ||
margin: 0.15em 0em 0.5em; | ||
page-break-before: always; | ||
text-align: center; | ||
} | ||
|
||
|
||
.rendered_html h2 | ||
{ | ||
color: #386BBC; | ||
line-height: 1.2; | ||
margin: 1.1em 0em 0.5em; | ||
} | ||
|
||
.rendered_html h3 | ||
{ | ||
font-size: 100%; | ||
line-height: 1.2; | ||
margin: 1.1em 0em 0.5em; | ||
} | ||
|
||
.rendered_html li | ||
{ | ||
line-height: 1.8; | ||
} | ||
|
||
.input_prompt, .CodeMirror-lines, .output_area | ||
{ | ||
font-family: Consolas; | ||
font-size: 120%; | ||
} | ||
|
||
.gap-above | ||
{ | ||
padding-top: 200px; | ||
} | ||
|
||
.gap01 | ||
{ | ||
padding-top: 10px; | ||
} | ||
|
||
.gap05 | ||
{ | ||
padding-top: 50px; | ||
} | ||
|
||
.gap1 | ||
{ | ||
padding-top: 100px; | ||
} | ||
|
||
.gap2 | ||
{ | ||
padding-top: 200px; | ||
} | ||
|
||
.gap3 | ||
{ | ||
padding-top: 300px; | ||
} | ||
|
||
.emph | ||
{ | ||
color: #386BBC; | ||
} | ||
|
||
.warn | ||
{ | ||
color: red; | ||
} | ||
|
||
.center | ||
{ | ||
text-align: center; | ||
} | ||
|
||
.nb_link | ||
{ | ||
padding-bottom: 0.5em; | ||
} | ||
|
||
</style> |