theme_overrides.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* override table width restrictions */
  2. @media screen and (min-width: 767px) {
  3. .wy-table-responsive table td {
  4. /* !important prevents the common CSS stylesheets from overriding
  5. this as on RTD they are loaded after this stylesheet */
  6. white-space: normal !important;
  7. }
  8. .wy-table-responsive {
  9. overflow: visible !important;
  10. }
  11. }
  12. .wy-side-nav-search {
  13. background-color: #bd2c2a !important;
  14. }
  15. .wy-nav-top {
  16. background-color: #bd2c2a !important;
  17. }
  18. .wy-nav-top:hover {
  19. color: #333333 !important;
  20. }
  21. .wy-nav-top a {
  22. color: #fff !important;
  23. }
  24. .wy-nav-top a:visited {
  25. color: #fff !important;
  26. }
  27. .wy-side-nav-search input[type=text] {
  28. border-radius: 0px !important;
  29. border-color: #333333 !important;
  30. }
  31. .toctree-l1 {
  32. color: #ffffff !important;
  33. }
  34. .version {
  35. color: #fff !important;
  36. }
  37. .search {
  38. border-radius: 10px !important;
  39. }
  40. .icon-home:hover {
  41. color: #333333 !important;
  42. }
  43. .icon-home:visited {
  44. color: #fff !important;
  45. }
  46. .icon-home:hover:visited {
  47. color: #333333 !important;
  48. background-color: #bd2c2a !important;
  49. }
  50. .wy-form {
  51. border-radius: 0px !important;
  52. }
  53. a:hover {
  54. color: #bd2c2a !important;
  55. }
  56. a:visited {
  57. color: #429b9e !important;
  58. }
  59. a:visited:hover {
  60. color: #bd2c2a !important;
  61. }
  62. .wy-nav-top a:hover {
  63. color: #333333 !important;
  64. }