searxng.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. @import url("pocoo.css");
  2. a, a.reference, a.footnote-reference {
  3. color: #004b6b;
  4. border-color: #004b6b;
  5. }
  6. a:hover {
  7. color: #6d4100;
  8. border-color: #6d4100;
  9. }
  10. p.version-warning {
  11. background-color: #004b6b;
  12. }
  13. aside.sidebar {
  14. background-color: whitesmoke;
  15. border-color: lightsteelblue;
  16. border-radius: 3pt;
  17. }
  18. div.sphinxsidebar p.caption {
  19. display: none;
  20. }
  21. p.sidebar-title, .sidebar p {
  22. margin: 6pt;
  23. }
  24. .sidebar li,
  25. .hlist li {
  26. list-style-type: disclosure-closed;
  27. }
  28. .sphinxsidebar .current > a {
  29. font-weight: bold;
  30. }
  31. /* admonitions
  32. */
  33. div.admonition, div.topic, nav.contents, div.toctree-wrapper {
  34. background-color: #fafafa;
  35. margin: 8px 0px;
  36. padding: 1em;
  37. border-radius: 3pt 0 0 3pt;
  38. border-top: none;
  39. border-right: none;
  40. border-bottom: none;
  41. border-left: 5pt solid #ccc;
  42. list-style-type: disclosure-closed;
  43. }
  44. div.toctree-wrapper p.caption {
  45. font-weight: normal;
  46. font-size: 24px;
  47. margin: 0 0 10px 0;
  48. padding: 0;
  49. line-height: 1;
  50. display: inline;
  51. }
  52. p.admonition-title:after {
  53. content: none;
  54. }
  55. .admonition.hint { border-color: #416dc0b0; }
  56. .admonition.note { border-color: #6c856cb0; }
  57. .admonition.tip { border-color: #85c5c2b0; }
  58. .admonition.attention { border-color: #ecec97b0; }
  59. .admonition.caution { border-color: #a6c677b0; }
  60. .admonition.danger { border-color: #d46262b0; }
  61. .admonition.important { border-color: #dfa3a3b0; }
  62. .admonition.error { border-color: red; }
  63. .admonition.warning { border-color: darkred; }
  64. .admonition.admonition-generic-admonition-title {
  65. border-color: #416dc0b0;
  66. }
  67. /* admonitions with (rendered) reST markup examples (:class: rst-example)
  68. *
  69. * .. admonition:: title of the example
  70. * :class: rst-example
  71. * ....
  72. */
  73. div.rst-example {
  74. background-color: inherit;
  75. margin: 0;
  76. border-top: none;
  77. border-right: 1px solid #ccc;
  78. border-bottom: none;
  79. border-left: none;
  80. border-radius: none;
  81. padding: 0;
  82. }
  83. div.rst-example > p.admonition-title {
  84. font-family: Sans Serif;
  85. font-style: italic;
  86. font-size: 0.8em;
  87. display: block;
  88. border-bottom: 1px solid #ccc;
  89. padding: 0.5em 1em;
  90. text-align: right;
  91. }
  92. /* code block in figures
  93. */
  94. div.highlight pre {
  95. text-align: left;
  96. }
  97. /* Table theme
  98. */
  99. thead, tfoot {
  100. background-color: #fff;
  101. }
  102. th:hover, td:hover {
  103. background-color: #ffc;
  104. }
  105. thead th, tfoot th, tfoot td, tbody th {
  106. background-color: #fffaef;
  107. }
  108. tbody tr:nth-child(odd) {
  109. background-color: #fff;
  110. }
  111. tbody tr:nth-child(even) {
  112. background-color: #fafafa;
  113. }
  114. caption {
  115. font-family: Sans Serif;
  116. padding: 0.5em;
  117. margin: 0.5em 0 0.5em 0;
  118. caption-side: top;
  119. text-align: left;
  120. }
  121. div.sphinx-tabs {
  122. clear: both;
  123. }