-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
40 lines (37 loc) · 875 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
.customBlock {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
background: #f5f5f5 5px center/3em no-repeat;
border-color: #DFDEDE;
border-style: solid;
border-radius: 10px;
border-width: thin;
}
.rmdhelp , .rmdcaution, .rmdimportant, .rmdnote, .rmdtip, .rmdwarning {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
background: #f5f5f5 5px center/3em no-repeat;
border-style: solid;
border-radius: 10px;
border-width: thin;
}
.rmdimportant {
background-image: url("images/important.png");
border-color: #F9BD3C;
}
.rmdnote {
background-image: url("images/note.png");
border-color: #EED992;
}
.rmdtip {
background-image: url("images/tip.png");
border-color: #D7C999;
}
.rmdwarning {
background-image: url("images/warning.png");
border-color: #B03A2E;
}
.rmdhelp {
background-image: url("images/help.png");
border-color: black;
}