Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rlabbe
GitHub Repository: rlabbe/Kalman-and-Bayesian-Filters-in-Python
Path: blob/master/kf_book/custom.css
687 views
1
<style>
2
@import url('http://fonts.googleapis.com/css?family=Source+Code+Pro');
3
@import url('http://fonts.googleapis.com/css?family=Lora');
4
5
.CodeMirror pre {
6
font-family: 'Source Code Pro', Consolas, monocco, monospace;
7
}
8
div.cell{
9
//width: 950px;
10
margin-left: 0% !important;
11
margin-right: auto;
12
}
13
div.text_cell_render{
14
font-family: 'Lora';
15
line-height: 125%;
16
font-size: 100%;
17
text-align: justify;
18
text-justify:inter-word;
19
}
20
div.text_cell code {
21
background: transparent;
22
color: #000000;
23
font-weight: 400;
24
font-size: 11pt;
25
font-family: 'Source Code Pro', Consolas, monocco, monospace;
26
}
27
h1 {
28
font-family: 'Open sans',verdana,arial,sans-serif;
29
}
30
31
div.input_area {
32
background: #F6F6F9;
33
border: 1px solid #586e75;
34
}
35
36
.text_cell_render h1 {
37
font-weight: 200;
38
font-size: 30pt;
39
line-height: 100%;
40
color:#c76c0c;
41
margin-bottom: 0.5em;
42
margin-top: 1em;
43
display: block;
44
white-space: wrap;
45
text-align: left;
46
}
47
h2 {
48
font-family: 'Open sans',verdana,arial,sans-serif;
49
text-align: left;
50
}
51
.text_cell_render h2 {
52
font-weight: 200;
53
font-size: 16pt;
54
font-style: italic;
55
line-height: 100%;
56
color:#c76c0c;
57
margin-bottom: 0.5em;
58
margin-top: 1.5em;
59
display: block;
60
white-space: wrap;
61
text-align: left;
62
}
63
h3 {
64
font-family: 'Open sans',verdana,arial,sans-serif;
65
}
66
.text_cell_render h3 {
67
font-weight: 200;
68
font-size: 14pt;
69
line-height: 100%;
70
color:#d77c0c;
71
margin-bottom: 0.5em;
72
margin-top: 2em;
73
display: block;
74
white-space: wrap;
75
text-align: left;
76
}
77
h4 {
78
font-family: 'Open sans',verdana,arial,sans-serif;
79
}
80
.text_cell_render h4 {
81
font-weight: 100;
82
font-size: 14pt;
83
color:#d77c0c;
84
margin-bottom: 0.5em;
85
margin-top: 0.5em;
86
display: block;
87
white-space: nowrap;
88
}
89
h5 {
90
font-family: 'Open sans',verdana,arial,sans-serif;
91
}
92
93
.text_cell_render h5 {
94
font-weight: 200;
95
font-style: normal;
96
color: #1d3b84;
97
font-size: 16pt;
98
margin-bottom: 0em;
99
margin-top: 0.5em;
100
display: block;
101
white-space: nowrap;
102
}
103
div.output_subarea.output_text.output_pyout {
104
overflow-x: auto;
105
overflow-y: visible;
106
max-height: 5000000px;
107
}
108
div.output_subarea.output_stream.output_stdout.output_text {
109
overflow-x: auto;
110
overflow-y: visible;
111
max-height: 5000000px;
112
}
113
div.output_wrapper{
114
margin-top:0.2em;
115
margin-bottom:0.2em;
116
}
117
118
code{
119
font-size: 6pt;
120
121
}
122
.rendered_html code{
123
background-color: transparent;
124
}
125
ul{
126
margin: 2em;
127
}
128
ul li{
129
padding-left: 0.5em;
130
margin-bottom: 0.5em;
131
margin-top: 0.5em;
132
}
133
ul li li{
134
padding-left: 0.2em;
135
margin-bottom: 0.2em;
136
margin-top: 0.2em;
137
}
138
ol{
139
margin: 2em;
140
}
141
ol li{
142
padding-left: 0.5em;
143
margin-bottom: 0.5em;
144
margin-top: 0.5em;
145
}
146
ul li{
147
padding-left: 0.5em;
148
margin-bottom: 0.5em;
149
margin-top: 0.2em;
150
}
151
a:link{
152
color:#447adb;
153
}
154
a:visited{
155
color: #1d3b84;
156
}
157
a:hover{
158
color: #1d3b84;
159
}
160
a:focus{
161
color:#447adb;
162
}
163
a:active{
164
font-weight: bold;
165
color:#447adb;
166
}
167
.rendered_html :link {
168
text-decoration: underline;
169
}
170
.rendered_html :hover {
171
text-decoration: none;
172
}
173
.rendered_html :visited {
174
text-decoration: none;
175
}
176
.rendered_html :focus {
177
text-decoration: none;
178
}
179
.rendered_html :active {
180
text-decoration: none;
181
}
182
.warning{
183
color: rgb( 240, 20, 20 )
184
}
185
hr {
186
color: #f3f3f3;
187
background-color: #f3f3f3;
188
height: 1px;
189
}
190
blockquote{
191
display:block;
192
background: #fcfcfc;
193
border-left: 5px solid #c76c0c;
194
font-family: 'Open sans',verdana,arial,sans-serif;
195
width:680px;
196
padding: 10px 10px 10px 10px;
197
text-align:justify;
198
text-justify:inter-word;
199
}
200
blockquote p {
201
margin-bottom: 0;
202
line-height: 125%;
203
font-size: 100%;
204
}
205
</style>
206
<script>
207
MathJax.Hub.Config({
208
TeX: {
209
extensions: ["AMSmath.js"],
210
equationNumbers: { autoNumber: "AMS", useLabelIds: true}
211
},
212
tex2jax: {
213
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
214
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
215
},
216
displayAlign: 'center', // Change this to 'center' to center equations.
217
"HTML-CSS": {
218
scale: 95,
219
availableFonts: [],
220
preferredFont:null,
221
webFont: "TeX",
222
styles: {'.MathJax_Display': {"margin": 4}}
223
},
224
"fast-preview": {
225
"disabled": false
226
}
227
});
228
</script>
229
230