_pydoc.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. CSS file for pydoc.
  3. Contents of this file are subject to change without notice.
  4. */
  5. body {
  6. background-color: #f0f0f8;
  7. }
  8. table.heading tr {
  9. background-color: #7799ee;
  10. }
  11. .decor {
  12. color: #ffffff;
  13. }
  14. .title-decor {
  15. background-color: #ffc8d8;
  16. color: #000000;
  17. }
  18. .pkg-content-decor {
  19. background-color: #aa55cc;
  20. }
  21. .index-decor {
  22. background-color: #ee77aa;
  23. }
  24. .functions-decor {
  25. background-color: #eeaa77;
  26. }
  27. .data-decor {
  28. background-color: #55aa55;
  29. }
  30. .author-decor {
  31. background-color: #7799ee;
  32. }
  33. .credits-decor {
  34. background-color: #7799ee;
  35. }
  36. .error-decor {
  37. background-color: #bb0000;
  38. }
  39. .grey {
  40. color: #909090;
  41. }
  42. .white {
  43. color: #ffffff;
  44. }
  45. .repr {
  46. color: #c040c0;
  47. }
  48. table.heading tr td.title {
  49. vertical-align: bottom;
  50. }
  51. table.heading tr td.extra {
  52. vertical-align: bottom;
  53. text-align: right;
  54. }
  55. .heading-text {
  56. font-family: helvetica, arial;
  57. }
  58. .bigsection {
  59. font-size: larger;
  60. }
  61. .title {
  62. font-size: x-large;
  63. }
  64. .code {
  65. font-family: monospace;
  66. }
  67. table {
  68. width: 100%;
  69. border-spacing : 0;
  70. border-collapse : collapse;
  71. border: 0;
  72. }
  73. td {
  74. padding: 2;
  75. }
  76. td.section-title {
  77. vertical-align: bottom;
  78. }
  79. td.multicolumn {
  80. width: 25%;
  81. vertical-align: bottom;
  82. }
  83. td.singlecolumn {
  84. width: 100%;
  85. }