theming_example.css 278 B

1234567891011
  1. /*
  2. * style the list
  3. * for OL you can have
  4. * decimal | lower-roman | upper-roman | lower-alpha | upper-alpha
  5. * for UL you can have
  6. * disc | circle | square or an image eg url(x.png)
  7. * you can also have 'none'
  8. */
  9. ol.theming-example-list {
  10. list-style-type: upper-alpha;
  11. }