t2d-stylesheet-extra.css 802 B

123456789101112131415161718192021222324252627
  1. /* the symbol listing at the top of the page would normally have bold symbol names
  2. let's try removing the boldness */
  3. a.el {
  4. font-weight: normal;
  5. }
  6. /* in the description section, function/method parameters are one to a line.
  7. let's combine them on a line */
  8. .memname tr {
  9. float: left;
  10. }
  11. /* parameter names are bright, dark red.
  12. would prefer something that doesn't look like a warning */
  13. .paramname {
  14. color: #707070;
  15. }
  16. /* not only were our parameter names "warning" red colored,
  17. they were bold. let's go to normal */
  18. /* note that we change several classes here since they were lumped together
  19. in doxygen.css as well. by the same point, the color was specific to the
  20. paramname class
  21. */
  22. .params .paramname, .retval .paramname {
  23. font-weight: normal;
  24. }