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
| .alert-blockquote {
--title-color: #fff;
--content-color: inherit;
padding: 18px;
line-height: 24px;
margin: 1rem 0;
border-radius: 4px;
color: var(--content-color);
border-left: none !important;
}
.alert-blockquote * {
color: var(--content-color) !important;
}
.alert-blockquote .alert-heading {
margin: -18px -18px 12px;
padding: 4px 18px;
border-radius: 4px 4px 0 0;
font-weight: 600;
color: var(--title-color) !important;
display: flex;
align-items: center;
}
.alert-blockquote .alert-heading svg {
width: 1em !important;
height: 1em !important;
margin-right: 0.5rem !important;
fill: currentColor !important;
}
.alert-blockquote p:last-child {
margin-bottom: 0;
}
/* Light theme */
.alert-blockquote.alert-note {
--title-background-color: #166dd0;
--content-background-color: #e7f2fa;
}
.alert-blockquote.alert-tip {
--title-background-color: #1a7f37;
--content-background-color: #efe;
}
.alert-blockquote.alert-important {
--title-background-color: #8250df;
--content-background-color: #f5f0ff;
}
.alert-blockquote.alert-warning {
--title-background-color: #9a6700;
--content-background-color: #fff8c5;
}
.alert-blockquote.alert-caution {
--title-background-color: #cf222e;
--content-background-color: #ffebe9;
}
/* Dark theme */
body.night .alert-blockquote {
--content-color: #d0d7dd;
}
body.night .alert-blockquote.alert-note {
--title-background-color: #58a6ff;
--content-background-color: #0d1d30;
}
body.night .alert-blockquote.alert-tip {
--title-background-color: #3fb950;
--content-background-color: #0f2a1b;
}
body.night .alert-blockquote.alert-important {
--title-background-color: #a371f7;
--content-background-color: #2a1d3f;
}
body.night .alert-blockquote.alert-warning {
--title-background-color: #d29922;
--content-background-color: #3b2300;
}
body.night .alert-blockquote.alert-caution {
--title-background-color: #f85149;
--content-background-color: #3d0c0c;
}
.alert-blockquote .alert-heading {
background: var(--title-background-color);
}
.alert-blockquote {
background: var(--content-background-color);
}
|