-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (104 loc) · 1.92 KB
/
Copy pathstyle.css
File metadata and controls
118 lines (104 loc) · 1.92 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
color: #35dc00 ;
}
.code {
color: #35dc00 ;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
.objectives {
padding: 1em 1em 1em 4em;
background: #17a589 ;
background-color: #0e6655 ;
color: #ffffff;
border: 4px solid # #a3e4d7 ;
border-radius: 10px;
font-family: Arial;
position:relative;
font-size: 20px;
}
.objectives:before {
content: "\f03a";
font-family: FontAwesome;
left:20px;
position:absolute;
font-size: 45px;
}
.rmdquestion {
padding: 1em 1em 1em 4em;
background: #2874a6;
color: #85c1e9;
border: 4px solid #66daff;
border-radius: 10px;
font-family: Arial;
position:relative;
font-size: 20px;
}
.rmdquestion:before {
content: "\f059";
font-family: FontAwesome;
left:20px;
position:absolute;
font-size: 35px;
}
.rmdwarning {
padding: 1em 1em 1em 4em;
background: #f1c40f ;
color: #b9770e;
border: 4px solid #f7dc6f;
border-radius: 10px;
font-family: Arial;
font-size: 20px;
position:relative;
}
.rmdwarning:before {
content: "\f071";
font-family: FontAwesome;
left:20px;
position:absolute;
font-size: 45px;
}
.rmdalert {
padding: 1em 1em 1em 4em;
background: #FF5733 ;
color: #ffffff ;
border: 4px solid #FF5733;
border-radius: 10px;
font-family: Arial;
font-size: 20px;
position:relative;
}
.rmdalert:before {
content: "\f256";
font-family: FontAwesome;
left:10px;
position:absolute;
font-size: 45px;
}
.rmdtip {
padding: 1em 1em 1em 4em;
background: #117a65 ;
color: #ffffff ;
border: 4px solid #16a085 ;
border-radius: 10px;
font-family: Arial;
font-size: 20px;
position:relative;
}
.rmdtip:before {
content: "\f6ed";
font-family: FontAwesome;
left:10px;
position:absolute;
font-size: 45px;
}