We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f6ef5c + ffb2d09 commit 7510e55Copy full SHA for 7510e55
base.css
@@ -77,6 +77,19 @@ ins {text-decoration: underline; color: #005100;}
77
pre { margin-left: 1em; }
78
pre > code { display: inline-block; }
79
80
+
81
+/* Use an em-dash for the list bullet. */
82
+ul {
83
+ list-style: none;
84
+ /* Relative positioning on the 'ul' lets the absolutely-positioned
85
+ marker align relative to it.*/
86
+ position: relative;
87
+}
88
+ul li:before {
89
+ content: "\2014";
90
+ position: absolute; left: 10px;
91
92
93
/* This is here rather than inside elements/toc.html because browsers
94
don't understand leader() or target-counter(), so they drop them
95
inside the CSSOM. */
0 commit comments