readthedocs.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .navbar-default {
  2. background: #2980b9;
  3. border: none;
  4. }
  5. .navbar-default .navbar-brand {
  6. color: #fcfcfc;
  7. }
  8. .menu {
  9. background: #343131;
  10. color: #fcfcfc;
  11. }
  12. .menu ul.list li a {
  13. color: #fcfcfc;
  14. }
  15. .menu ul.list li.title {
  16. background: #2980b9;
  17. padding-bottom: 5px;
  18. }
  19. .menu ul.list li:nth-child(2) {
  20. margin-top: 0;
  21. }
  22. .menu ul.list li.chapter a,
  23. .menu ul.list li.chapter .simple {
  24. color: #555;
  25. text-transform: uppercase;
  26. text-decoration: none;
  27. }
  28. .menu ul.list li.chapter ul.links a {
  29. color: #b3b3b3;
  30. text-transform: none;
  31. padding-left: 35px;
  32. }
  33. .menu ul.list li.chapter ul.links a:hover {
  34. background: #4e4a4a;
  35. }
  36. .menu ul.list li.chapter a.active,
  37. .menu ul.list li.chapter ul.links a.active {
  38. color: #0099e5;
  39. }
  40. .menu ul.list li.chapter ul.links {
  41. padding-left: 0;
  42. }
  43. .menu ul.list li.divider {
  44. background: rgba(255, 255, 255, 0.07);
  45. }
  46. #book-search-input input,
  47. #book-search-input input:focus,
  48. #book-search-input input:hover {
  49. color: #949494;
  50. }
  51. .copyright {
  52. color: #b3b3b3;
  53. background: #272525;
  54. }
  55. .content {
  56. background: #fcfcfc;
  57. }
  58. .content a {
  59. color: #2980b9;
  60. }
  61. .content a:hover {
  62. color: #3091d1;
  63. }
  64. .content a:visited {
  65. color: #9b59b6;
  66. }
  67. .menu ul.list li:nth-last-child(2) {
  68. background: none;
  69. }
  70. code {
  71. white-space: nowrap;
  72. max-width: 100%;
  73. background: #fff;
  74. padding: 2px 5px;
  75. color: #e74c3c;
  76. overflow-x: auto;
  77. border-radius: 0;
  78. }
  79. pre {
  80. white-space: pre;
  81. margin: 0;
  82. padding: 12px 12px;
  83. font-size: 12px;
  84. line-height: 1.5;
  85. display: block;
  86. overflow: auto;
  87. color: #404040;
  88. background: rgba(238, 238, 238, 0.35);
  89. }
  90. .dark .content {
  91. background: none;
  92. }
  93. .dark code {
  94. background: none;
  95. color: #e09393;
  96. }