forked from jupyter4edu/jupyter-edu-book
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (38 loc) · 649 Bytes
/
style.css
File metadata and controls
38 lines (38 loc) · 649 Bytes
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
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
.rmdcaution,
.rmdimportant,
.rmdnote,
.rmdtip,
.rmdwarning {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
background: #f5f5f5 5px center/3em no-repeat;
}
.rmdcaution {
background-image: url("icons/caution_2x.png");
}
.rmdimportant {
background-image: url("icons/important_2x.png");
}
.rmdnote {
background-image: url("icons/note_2x.png");
}
.rmdtip {
background-image: url("icons/tip_2x.png");
}
.rmdwarning {
background-image: url("icons/warning_2x.png");
}