forked from isadoranun/time-series-feats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
150 lines (123 loc) · 3.42 KB
/
custom.css
File metadata and controls
150 lines (123 loc) · 3.42 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
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
<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=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' 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');
}
#notebook_panel { /* main background */
background: #888;
color: #f6f6f6;
}
div.cell { /* set cell width to about 80 chars */
width: 1000px;
}
div #notebook { /* centre the content */
background: #fff; /* white background for content */
width: 1100px;
margin: auto;
padding-left: 1em;
}
#notebook li { /* More space between bullet points */
margin-top:0.8em;
}
/* draw border around running cells */
div.cell.border-box-sizing.code_cell.running {
border: 3px solid #111;
}
/* Put a solid color box around each cell and its output, visually linking them together */
div.cell.code_cell {
background-color: rgba(171,165,131,0.3);
border-radius: 10px; /* rounded borders */
padding: 1em;
margin-top: 1em;
margin-left:2.7em;
}
div.text_cell_render{
font-family: 'Alvo' sans-serif;
line-height: 130%;
font-size: 115%;
width:900px;
margin-left:auto;
margin-right:auto;
}
/* Formatting for header cells */
.text_cell_render h1 {
font-family: 'Alvo', sans-serif;
font-weight: 400;
font-size: 40pt;
line-height: 100%;
color: black;
/*margin-bottom: 0.1em;*/
/*margin-top: 0.1em;*/
text-align: center;
display: block;
background-color: #ADD8E6;
border-radius: 10px; /* rounded borders */
padding: 1em;
margin-top: 1em;
margin-left:-0.35em;
margin-right:-1.8em;*/
}
.text_cell_render h2 {
font-family: 'Alvo', sans-serif;
font-weight: 700;
font-size: 24pt;
line-height: 100%;
color: black;
/*margin-bottom: 0.1em;*/
/*margin-top: 0.1em;*/
display: block;
background-color: #ACC4E6;
border-radius: 10px; /* rounded borders */
padding: 1em;
margin-top: 1em;
margin-left:-0.35em;
margin-right:-3em;
}
.text_cell_render h3 {
font-family: 'Alvo', sans-serif;
margin-top:12px;
margin-bottom: 3px;
/*font-style: italic;*/
color: #E56717;
}
.text_cell_render h4 {
font-family: 'Alvo', sans-serif;
font-weight: 800;
font-size: 13pt;
margin-top:12px;
margin-bottom: 3px;
color:#FF9949;
}
.text_cell_render h5 {
font-family: 'Alvo', sans-serif;
font-weight: 800;
font-size: 12pt;
margin-top:12px;
margin-bottom: 3px;
color: #6495ED;
font-style: normal;
}
.text_cell_render h6 {
font-family: 'Alvo', sans-serif;
font-weight: 500;
font-size: 12pt;
color: grey;
margin-bottom: 1px;
margin-top: 1px;
}
.CodeMirror{
font-family: "PT Mono";
font-size: 100%;
}
div.prompt { /* remove In/Out prompt */
display: none;
}
div.output_subarea { /* remove margin in front of output */
border: none;
}
</style>