custom.css
... ...
@@ -21,3 +21,25 @@ body {background-color: white;}
21 21
.tree li label, .tree li a {
22 22
color: black;
23 23
}
24
+
25
+.markdown-body ol {
26
+ counter-reset: custom;
27
+ list-style-type: none;
28
+}
29
+
30
+.markdown-body ol li:before {
31
+ content: counter(custom, decimal)". ";
32
+ counter-increment: custom;
33
+ margin-right: 5px;
34
+ font-weight: bold;
35
+ margin-left: -21px;
36
+}
37
+
38
+.markdown-body ol li ol {
39
+ counter-reset: custom2;
40
+}
41
+
42
+.markdown-body ol li ol li:before {
43
+ content: counter(custom2, lower-latin)". ";
44
+ counter-increment:custom2;
45
+}