-
Notifications
You must be signed in to change notification settings - Fork 68
/
style.css
56 lines (52 loc) · 880 Bytes
/
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
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
/*
* Admonitions
*
* Colors (title, body)
* warning: #f0b37e #ffedcc (orange)
* note: #6ab0de #e7f2fa (blue)
* tip: #1abc9c #dbfaf4 (green)
*/
.note {
padding: 0.5em;
background-color: #e7f2fa;
border-radius: 5px;
text-align: center;
}
.notel {
padding: 0.5em;
background-color: #e7f2fa;
border-radius: 5px;
text-align: left;
}
.warning {
padding: 0.5em;
background-color: #f0b37e;
border-radius: 5px;
text-align: center;
}
.warningl {
padding: 0.5em;
background-color: #f0b37e;
border-radius: 5px;
text-align: left;
}
.tip {
padding: 0.5em;
background-color: #dbfaf4;
border-radius: 5px;
text-align: center;
}