-
Notifications
You must be signed in to change notification settings - Fork 5
/
notebook.css
187 lines (170 loc) · 3.64 KB
/
notebook.css
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
* Cascading stylesheet for GNU Emacs notebooks
* Nicolas P. Rougier - December 202
* Released under a Creative Commons CC-BY 4.0 license
*/
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');
@import url('https://fonts.googleapis.com/css?family=Roboto Slab:300,400,500');
@import url('https://fonts.googleapis.com/css?family=Roboto Condensed:300,400,500');
body {
font-family: "Roboto", sans;
font-size: 16px;
font-weight: 300;
line-height: 1.3em;
}
#content {
margin: 0 auto;
max-width: 720px;
margin-top: 5em;
margin-bottom: 5em;
}
b {
font-weight: 400;
}
a {
color: #673AB7;
text-decoration: none;
/* font-weight: 400;*/
}
h1, h2, h3 {
font-family: "Roboto Slab", serif;
font-weight: 400;
}
h1.title {
font-weight: 400;
line-height: 0.75em;
padding-top: 1.em;
padding-bottom: 0.5em;
}
h1 span.subtitle {
font-size: 16px;
font-weight: 300;
}
h2 {
clear: both;
padding-top: 1em;
padding-bottom: 0em;
}
p {
text:align: justify;
/* column-count: 2;*/
text-align: justify;
text-justify: inter-word;
hyphens: auto;
}
div.abstract {
background: #f9f9ff;
padding: .75em 1em .75em 1em;
line-height: 1.25em;
font-family: "Roboto Condensed", sans-serif;
border: .5px solid #555599;
padding-bottom: 0.25em;
}
div.abstract p {
column-count: 1;
margin: 0 0 0.5em 0;
}
div.figure {
padding: 0.50em .00em 0.75em .00em;
}
div.figure p {
column-count: 1;
line-height: 1.2em;
font-family: "Roboto Condensed", sans-serif;
}
div.sidefig::after {
display: block;
content: "";
clear: both;
}
div.sidefig div.figure p:nth-of-type(1) {
width: 60%;
float: left;
}
div.sidefig div.figure p:nth-of-type(2) {
font-size: 95%;
/* border-top: 1px solid black; */
background-color: #f9f9ff;
padding: 1em;
}
div.sidefig div.figure img {
width: 100%;
}
div.figure img {
width: 100%;
}
span.figure-number {
font-weight: 500;
}
/* --- Footnote ------------------------------------------------------------ */
div.footpara {
display: inline-block;
}
h2.footnotes {
font-size: 16px;
width: 50%;
border-bottom: 1px solid black;
}
p.footpara {
column-count: 1;
line-height: 1.25em;
font-family: "Roboto Condensed", sans-serif;
margin: 0;
}
sup {
font-size: 0.75em;
vertical-align: top;
position: relative; top: -0.5em;
}
/* --- Block quote --------------------------------------------------------- */
blockquote p {
font-size: 95%;
line-height: 1.15em;
column-count: 1;
padding-top: 1em;
padding-bottom: 1.5em;
}
/* --- Source blocks ------------------------------------------------------- */
code {
font-family: "Roboto Mono", sans-serif;
font-weight: 300;
}
pre.example::before {
display: block;
background-color: #fffff;
content: "Output";
font-family: "Roboto Condensed", sans-serif;
font-weight: 400;
padding-bottom: 0.25em;
}
pre.example {
font-size: 95%;
background-color: #f9f9ff;
line-height: 1.4em;
font-family: "Roboto Mono", sans-serif;
font-weight: 300;
padding: 0.5em 1em 0.5em 1em;
}
pre.src {
font-size: 95%;
line-height: 1.4em;
font-family: "Roboto Mono", sans-serif;
font-weight: 300;
padding: 0;
margin: 0;
}
div.org-src-container {
border: .5px solid #555599;
padding: 0.50em 1.00em 0.75em 1.00em;
background-color: #f9f9ff;
margin-bottom: 0.5em;
}
label.org-src-name {
display: block;
font-family: "Roboto Condensed", sans-serif;
padding-bottom: .25em;
}
span.listing-number {
font-weight: 500;
}