-
Notifications
You must be signed in to change notification settings - Fork 5
/
docusaurus-admonitions.css
102 lines (82 loc) · 1.61 KB
/
docusaurus-admonitions.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/**
Docusaurus-like styling for `remarkable-admonitions` blocks
*/
.admonition {
margin-bottom: 1em;
padding: 15px 30px 15px 15px;
}
.admonition h5 {
margin-top: 0;
margin-bottom: 8px;
text-transform: uppercase;
}
.admonition-icon {
display: inline-block;
vertical-align: middle;
margin-right: 0.2em;
}
.admonition-icon svg {
display: inline-block;
width: 22px;
height: 22px;
stroke-width: 0;
}
.admonition-content > :last-child {
margin-bottom: 0;
}
/** Customization */
.admonition-warning {
background-color: rgba(230, 126, 34, 0.1);
border-left: 8px solid #e67e22;
}
.admonition-warning h5 {
color: #e67e22;
}
.admonition-warning .admonition-icon svg {
stroke: #e67e22;
fill: #e67e22;
}
.admonition-tip {
background-color: rgba(46, 204, 113, 0.1);
border-left: 8px solid #2ecc71;
}
.admonition-tip h5 {
color: #2ecc71;
}
.admonition-tip .admonition-icon svg {
stroke: #2ecc71;
fill: #2ecc71;
}
.admonition-caution {
background-color: rgba(231, 76, 60, 0.1);
border-left: 8px solid #e74c3c;
}
.admonition-caution h5 {
color: #e74c3c;
}
.admonition-caution .admonition-icon svg {
stroke: #e74c3c;
fill: #e74c3c;
}
.admonition-important {
background-color: rgba(52, 152, 219, 0.1);
border-left: 8px solid #3498db;
}
.admonition-important h5 {
color: #3498db;
}
.admonition-important .admonition-icon svg {
stroke: #3498db;
fill: #3498db;
}
.admonition-note {
background-color: rgba(241, 196, 15, 0.1);
border-left: 8px solid #f1c40f;
}
.admonition-note h5 {
color: #f1c40f;
}
.admonition-note .admonition-icon svg {
stroke: #f1c40f;
fill: #f1c40f;
}