searx.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. div.sidebar {
  14. background-color: whitesmoke;
  15. border-color: lightsteelblue;
  16. border-radius: 3pt;
  17. }
  18. p.sidebar-title, .sidebar p {
  19. margin: 6pt;
  20. }
  21. .sidebar li {
  22. list-style-type: disclosure-closed;
  23. }
  24. div.admonition,
  25. div.topic {
  26. background-color: #fafafa;
  27. margin: 8px 0px;
  28. padding: 1em;
  29. border: none;
  30. }
  31. /* admonitions with (rendered) reST markup examples (:class: rst-example)
  32. *
  33. * .. admonition:: title of the example
  34. * :class: rst-example
  35. * ....
  36. /* navigation menu: use sans font and select light/dark colors for better
  37. * contrast.
  38. */
  39. div.rst-example {
  40. padding-left: 12px;
  41. padding-right: 12px;
  42. background-color: white;
  43. transform: scale(0.9);
  44. transition: transform 1s;
  45. }
  46. /* div.rst-example > .admonition-title { */
  47. /* background-color: inherit; */
  48. /* color: inherit; */
  49. /* } */
  50. /* div.rst-example > .admonition-title:after{ */
  51. /* font-family: inherit; */
  52. /* font-style: italic; */
  53. /* content: " // hover mouse over .."; */
  54. /* } */
  55. @media screen {
  56. div.rst-example:hover {
  57. transform: scale(1);
  58. background-color: inherit;
  59. padding-left: inherit;
  60. padding-right: inherit;
  61. border-left: inherit;
  62. }
  63. div.rst-example:hover > .admonition-title {
  64. display: none;
  65. }
  66. }