layout.html 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {% extends "!layout.html" %}
  2. {% block sidebartitle %} {{ super() }}
  3. <style>
  4. /* Sidebar header (and topbar for mobile) */
  5. .wy-side-nav-search, .wy-nav-top {
  6. background: #76b900;
  7. }
  8. .wy-side-nav-search a:link, .wy-nav-top a:link {
  9. color: #fff;
  10. }
  11. .wy-side-nav-search a:visited, .wy-nav-top a:visited {
  12. color: #fff;
  13. }
  14. .wy-side-nav-search a:hover, .wy-nav-top a:hover {
  15. color: #fff;
  16. }
  17. .wy-menu-vertical a:link, .wy-menu-vertical a:visited {
  18. color: #d9d9d9
  19. }
  20. .wy-menu-vertical a:active {
  21. background-color: #76b900
  22. }
  23. .wy-side-nav-search>div.version {
  24. color: rgba(0, 0, 0, 0.3)
  25. }
  26. </style>
  27. {% endblock %}
  28. {% block footer %} {{ super() }}
  29. <style>
  30. a:link, a:visited {
  31. color: #76b900;
  32. }
  33. a:hover {
  34. color: #8c0;
  35. }
  36. .rst-content dl:not(.docutils) dt {
  37. background: rgba(118, 185, 0, 0.1);
  38. color: rgba(59,93,0,1);
  39. border-top: solid 3px rgba(59,93,0,1);
  40. }
  41. </style>
  42. {% endblock %}