blob: 186557610f639d998a16bedec3afea501f8794c2 (
plain) (
blame)
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
|
.my-list-style {
margin-left: 0;
}
.aw-bottom {
padding: 2em;
}
.aw-footer {
margin-top: 2em;
border-top: 2px solid lightgrey;
border-bottom: 2px solid lightgrey;
/* height: 250px;*/
padding-top: 2em;
padding-bottom: 2em;
}
.aw-footer li {
line-height: 200%;
}
.summary {
margin-bottom: 2em;
margin-top: 2em;
color: black;
}
.summary pre { display: none; }
.article-body {
margin-top: 2em;
color: black;
}
.article-title {
margin-bottom: 1em;
}
.article-header {
margin-bottom: 1em;
}
/**
* Overrides of notebook CSS for static HTML export
**/
div.entry-content {
overflow: visible;
padding: 8px;
}
.inner_cell {
width: 100%;
}
.input_area {
padding: 0.2em;
}
a.heading-anchor {
white-space: normal;
}
.rendered_html code {
font-size: .8em;
}
pre.ipynb {
color: black;
background: #f7f7f7;
border: none;
box-shadow: none;
margin-bottom: 0;
padding: 0;
margin: 0px;
font-size: 13px;
}
/* remove the prompt div from text cells */
.prompt {
display: none;
}
/* remove horizontal padding from text cells, */
/* so it aligns with outer body text */
div.text_cell_render {
padding: 0.5em 0em;
}
img.anim_icon {
padding: 0;
border: 0;
vertical-align: middle;
-webkit-box-shadow: none;
-box-shadow: none;
}
div.collapseheader {
width: 100%;
background-color: #d3d3d3;
padding: 2px;
cursor: pointer;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
|