-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (70 loc) · 1.43 KB
/
style.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
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
/* Sidebar formating --------------------------------------------*/
.rmdinfo {
border: 1px solid #ccc;
}
.rmdwarn {
border: 1px solid #EA4335;
}
.rmdnote {
border: 1px solid #FBBC05;
}
.rmdtip {
border: 1px solid #34A853;
}
.rmdinfo, .rmdwarn, .rmdnote, .rmdtip {
border-left-width: 5px;
border-radius: 5px;
padding: 1em;
margin: 1em 0;
}
.book .book-body .page-wrapper .page-inner section.normal div.rmdwarn > :last-child,
.book .book-body .page-wrapper .page-inner section.normal div.rmdnote > :last-child,
.book .book-body .page-wrapper .page-inner section.normal div.rmdtip > :last-child,
.book .book-body .page-wrapper .page-inner section.normal div.rmdinfo > :last-child {
margin-bottom: 0;
}
div.rmdwarn::before, div.rmdnote::before, div.rmdtip::before {
display: block;
font-size: 1.1em;
font-weight: bold;
margin-bottom: 0.25em;
}
div.rmdwarn::before {
content: "警告";
color: #EA4335;
}
div.rmdnote::before {
content: "注意";
color: #FBBC05;
}
div.rmdtip::before {
content: "提示";
color: #34A853;
}
.todo {
display: block;
border: 1px solid #4285f4;
border-left-width: 5px;
border-radius: 5px;
padding: 0.5em 1em;
margin: 1em 0;
}
.todo::before {
content: "TO DO: ";
font-weight: bold;
color: #4285f4;
}