Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 129
1
<style type="text/css">
2
@import url('http://fonts.googleapis.com/css?family=Source+Code+Pro');
3
4
/* Change code font */
5
.CodeMirror pre {
6
font-family: 'Source Code Pro', Consolas, monocco, monospace;
7
}
8
9
div.text_cell {
10
max-width: 105ex; /* instead of 100%, */
11
}
12
13
div.text_cell_render h1 {
14
font-size: 16pt;
15
font-weight: bold;
16
color: RoyalBlue;
17
}
18
19
div.text_cell_render h2 {
20
font-size: 14pt;
21
font-weight: bold;
22
font-style: italic;
23
color: RoyalBlue;
24
}
25
26
div.text_cell_render h3 {
27
font-size: 14pt;
28
font-weight: normal;
29
font-style: italic;
30
color: RoyalBlue;
31
}
32
33
div.text_cell_render .rendered_html pre,
34
div.text_cell_render .rendered_html code {
35
font-size: 14pt;
36
color: RoyalBlue;
37
}
38
39
.rendered_html ol {
40
list-style:decimal;
41
margin: 1em 2em;
42
}
43
44
hr {
45
height:0;
46
border:0;
47
border-top:5px solid RoyalBlue;
48
}
49
</style>
50