By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 lists.css

View raw Download
text/plain • 559 B
ASCII text
        
            
1
ul {
2
list-style: var(--list-style, var(--style-unordered-list));
3
}
4
5
ul > li::marker {
6
color: var(--color-unordered-list-marker);
7
font: var(--font-unordered-list-marker);
8
display: block;
9
}
10
11
ul:not(.noindent) {
12
margin-left: var(--indent-unordered-list);
13
}
14
15
ol {
16
list-style: var(--list-style, var(--style-ordered-list));
17
}
18
19
ol > li::marker {
20
color: var(--color-ordered-list-marker);
21
font: var(--font-ordered-list-marker);
22
display: block;
23
}
24
25
ol:not(.noindent, .toast-container) {
26
margin-left: var(--indent-ordered-list);
27
}
28