searx.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. /* admonitions with (rendered) reST markup examples (:class: rst-example)
  25. *
  26. * .. admonition:: title of the example
  27. * :class: rst-example
  28. * ....
  29. /* navigation menu: use sans font and select light/dark colors for better
  30. * contrast.
  31. */
  32. div.rst-example {
  33. padding-left: 12px;
  34. padding-right: 12px;
  35. background-color: white;
  36. transform: scale(0.9);
  37. transition: transform 1s;
  38. }
  39. /* div.rst-example > .admonition-title { */
  40. /* background-color: inherit; */
  41. /* color: inherit; */
  42. /* } */
  43. /* div.rst-example > .admonition-title:after{ */
  44. /* font-family: inherit; */
  45. /* font-style: italic; */
  46. /* content: " // hover mouse over .."; */
  47. /* } */
  48. @media screen {
  49. div.rst-example:hover {
  50. transform: scale(1);
  51. background-color: inherit;
  52. padding-left: inherit;
  53. padding-right: inherit;
  54. border-left: inherit;
  55. }
  56. div.rst-example:hover > .admonition-title {
  57. display: none;
  58. }
  59. }