Edit online

You can style the list item markers, or other properties.

Edit online

For the media print, the default CSS rules for the list items use the :marker pseudo-class.

@media print {
    *[class~="topic/li"]::marker {
      text-align: center;
      font-weight:bold;   
    }
    *[class~="topic/li"] {
      margin-left: 0.25in;
    }
}

To eliminate the bold font weight for the items form ordered lists then add the following rules to your customization CSS:

*[class~="topic/ol"] > *[class~="topic/li"]::marker {
      font-weight:normal;
}

For the unordered lists:

*[class~="topic/ul"] > *[class~="topic/li"]::marker {
      font-weight:normal;
}