forked from rstudio/bookdown-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (48 loc) · 863 Bytes
/
style.css
File metadata and controls
54 lines (48 loc) · 863 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
.examplebox {
padding: 1em;
background: rgb(227, 226, 242);
color: rgb(0, 0, 0);
border: 2px solid rgb(227, 226, 242);
border-radius: 10px;
}
.exercisebox {
padding: 1em;
border: 2px solid rgb(112, 94, 232);
border-radius: 10px;
}
.theorembox {
padding: 1em;
background: rgba(0, 250, 0, 0.3);
color: rgb(0, 0, 0);
border: 2px rgb(0, 250, 0, 0.3);
border-radius: 10px;
}
.highlightbox {
padding: 1em;
background: rgb(88, 95, 88);
color: rgb(255, 255, 255);
border: 2px rgb(88, 95, 88);
border-radius: 10px;
}
.definitionbox {
padding: 1em;
border: 2px solid rgb(143, 227, 135);
border-radius: 10px;
}
.proofbox {
color: rgb(128, 128, 128);
}