forked from bcb420-2022/R_basics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
executable file
·71 lines (63 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
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
/* CUSTOM BLOCKS */
.rmd-task {
padding: 0em 0em 0em 3em;
margin-bottom: 2px;
background: #9ad4fe url("images/iconfinder_document_309087.png") left center/3em no-repeat /*!important*/;
border-style:solid;
border-color:#9ad4fe;
}
.rmd-task:before {
color: #fcf403;
font-size: 24px;
content: "Task";
}
.rmd-caution {
padding: 0em 0em 0em 3em;
margin-bottom: 2px;
background: /*#FFFF00*/ url("images/iconfinder_attention_309101.png") left center/3em no-repeat /*!important*/;
border-style:solid;
border-color:#ff6347;
}
.rmd-caution:before {
color: #ff6347;
font-size: 24px;
content: "Caution";
}
.rmd-original-history {
padding: 0em 0em 0em 4em;
margin-bottom: 2px;
background: /*#FFFF00*/ url("images/cc_icon.png") left center/3em no-repeat /*!important*/;
border-style:solid;
border-color:#000000;
}
.rmd-original-history:before {
color: #ff6347;
font-size: 24px;
content: "About";
}
.rmd-troubleshooting {
padding: 0em 0em 0em 4em;
margin-bottom: 2px;
background: /*#FFFF00*/ url("images/iconfinder_support_309071.png") left center/3em no-repeat /*!important*/;
border-style:solid;
border-color:#000000;
}
.rmd-troubleshooting:before {
color: #ff6347;
font-size: 24px;
content: "What could possibly go wrong?";
}