You are here

toc.css in TOC API 8

TOC styling

File

css/toc.css
View source
  1. /**
  2. * @file
  3. * TOC styling
  4. */
  5. .back-to-top {
  6. float: right;
  7. }
  8. ol.none {
  9. list-style-type: none;
  10. }
  11. ol.circle {
  12. list-style-type: circle;
  13. }
  14. ol.disc {
  15. list-style-type: disc;
  16. }
  17. ol.square {
  18. list-style-type: square;
  19. }
  20. ol.decimal {
  21. list-style-type: decimal;
  22. }
  23. ol.lower-alpha {
  24. list-style-type: lower-alpha;
  25. }
  26. ol.upper-alpha {
  27. list-style-type: upper-alpha;
  28. }
  29. ol.lower-roman {
  30. list-style-type: lower-roman;
  31. }
  32. ol.upper-roman {
  33. list-style-type: upper-roman;
  34. }