bae77c1d02
Modified the css style to use colors and fonts more to my liking. Still needs tweaking. Added a lot of content to the multidimensional KF chapter.
84 lines
2.4 KiB
CSS
84 lines
2.4 KiB
CSS
<link href='http://fonts.googleapis.com/css?family=Fenix' rel='stylesheet' type='text/css'>
|
|
<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>
|
|
<link href='http://fonts.googleapis.com/css?family=Source+Code+Pro:300,400' rel='stylesheet' type='text/css'>
|
|
<style>
|
|
@font-face {
|
|
font-family: "Computer Modern";
|
|
src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');
|
|
}
|
|
div.cell{
|
|
width:800px;
|
|
margin-left:16% !important;
|
|
margin-right:auto;
|
|
}
|
|
h1 {
|
|
font-family: 'Alegreya Sans', sans-serif;
|
|
}
|
|
h2 {
|
|
font-family: 'Fenix', serif;
|
|
}
|
|
h3{
|
|
font-family: 'Fenix', serif;
|
|
margin-top:12px;
|
|
margin-bottom: 3px;
|
|
}
|
|
h4{
|
|
font-family: 'Fenix', serif;
|
|
}
|
|
h5 {
|
|
font-family: 'Alegreya Sans', sans-serif;
|
|
}
|
|
div.text_cell_render{
|
|
font-family: 'Alegreya Sans',Computer Modern, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
|
|
line-height: 135%;
|
|
font-size: 120%;
|
|
width:600px;
|
|
margin-left:auto;
|
|
margin-right:auto;
|
|
}
|
|
.CodeMirror{
|
|
font-family: "Source Code Pro";
|
|
font-size: 90%;
|
|
}
|
|
/* .prompt{
|
|
display: None;
|
|
}*/
|
|
.text_cell_render h1 {
|
|
font-weight: 200;
|
|
font-size: 50pt;
|
|
line-height: 100%;
|
|
color:#CD2305;
|
|
margin-bottom: 0.5em;
|
|
margin-top: 0.5em;
|
|
display: block;
|
|
}
|
|
.text_cell_render h5 {
|
|
font-weight: 300;
|
|
font-size: 16pt;
|
|
color: #CD2305;
|
|
font-style: italic;
|
|
margin-bottom: .5em;
|
|
margin-top: 0.5em;
|
|
display: block;
|
|
}
|
|
|
|
.warning{
|
|
color: rgb( 240, 20, 20 )
|
|
}
|
|
</style>
|
|
<script>
|
|
MathJax.Hub.Config({
|
|
TeX: {
|
|
extensions: ["AMSmath.js"]
|
|
},
|
|
tex2jax: {
|
|
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
|
|
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
|
|
},
|
|
displayAlign: 'center', // Change this to 'center' to center equations.
|
|
"HTML-CSS": {
|
|
styles: {'.MathJax_Display': {"margin": 4}}
|
|
}
|
|
});
|
|
</script>
|