-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcustom.css
More file actions
104 lines (104 loc) · 2.98 KB
/
custom.css
File metadata and controls
104 lines (104 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<link href='http://fonts.googleapis.com/css?family=EB+Garamond' 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');
}
.code_cell {
width: 105ex !important ;
margin-bottom: 15px !important;
}
div.cell {
margin-left: auto;
margin-right: auto;
width: 70%;
}
div.cell.selected {
border: thin rgba(171, 171, 171, 0.5) dashed;
}
h1 {
font-family: 'Alegreya Sans', sans-serif;
}
h2 {
font-family: 'EB Garamond', serif;
}
h3 {
font-family: 'EB Garamond', serif;
margin-top:12px;
margin-bottom: 3px;
}
h4 {
font-family: 'EB Garamond', serif;
}
h5 {
font-family: 'Alegreya Sans', sans-serif;
}
div.text_cell_render {
font-family: 'EB Garamond',Computer Modern, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
line-height: 145%;
font-size: 140%;
}
div.input_area {
border-color: rgba(0,0,0,0.10) !important;
background: #fafafa;
}
.CodeMirror {
font-family: "Source Code Pro";
font-size: 90%;
}
.prompt {
display: None;
}
.output {
padding-left: 50px;
padding-top: 5px;
}
.output_wrapper {
padding-left: 5px;
padding-top: inherit;
}
div.output_scroll {
width: inherit;
}
.inner_cell {
padding-left: 5px;
}
.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>