blob: 218dfcb77060426b0588dd5b28979a4a038befd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
body {
/* to match ua.css, see bug 1020143 */
font-variant-numeric: tabular-nums;
}
ol, ul, section, p {
padding: 0; margin: 0;
line-height: 150%;
}
ol, ul {
list-style-position: inside;
}
li, p {
float: left;
padding: 0;
}
p {
padding-right: .5em;
}
li::marker {
/* Blink workaround of https://bugzilla.mozilla.org/show_bug.cgi?id=1688769 */
white-space: pre;
}
|