custom.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* 扩展 sphinx_rtd_theme 正文内容宽度,使阅读区域自适应更宽 */
  2. /* 经典 RTD 主题主要容器选择器 */
  3. .wy-nav-content {
  4. /* clamp(最小宽度, 首选流体宽度, 最大宽度) */
  5. /* max-width: clamp(960px, 92vw, 1500px); */
  6. max-width: clamp(960px, 92vw, 1500px);
  7. margin-left: auto;
  8. margin-right: auto;
  9. }
  10. /* 中等屏幕:稍微放宽流体宽度 */
  11. @media screen and (max-width: 1280px) {
  12. .wy-nav-content {
  13. max-width: clamp(880px, 94vw, 1200px);
  14. }
  15. }
  16. /* 小屏幕:不强制限制宽度,交给主题自身的移动端布局 */
  17. @media screen and (max-width: 767.98px) {
  18. .wy-nav-content {
  19. max-width: none;
  20. }
  21. }
  22. /* 修复大屏下脚注(footnote)位置异常:确保脚注块正常流布局 */
  23. .rst-content .footnote, .rst-content .footnotes {
  24. position: static !important;
  25. float: none !important;
  26. clear: both;
  27. }
  28. /* 统一中英文界面字体大小设置 */
  29. /* 确保侧边栏导航字体大小一致 */
  30. .wy-nav-side .wy-menu {
  31. font-size: 14px !important;
  32. }
  33. .wy-nav-side .wy-menu a {
  34. font-size: 14px !important;
  35. }
  36. .wy-nav-side .wy-menu .toctree-l1 > a {
  37. font-size: 14px !important;
  38. font-weight: 600;
  39. }
  40. .wy-nav-side .wy-menu .toctree-l2 > a {
  41. font-size: 13px !important;
  42. font-weight: 500;
  43. }
  44. .wy-nav-side .wy-menu .toctree-l3 > a {
  45. font-size: 12px !important;
  46. font-weight: 400;
  47. }
  48. .wy-nav-side .wy-menu .toctree-l4 > a {
  49. font-size: 11px !important;
  50. font-weight: 400;
  51. }
  52. /* 确保语言切换UI字体大小与PDF按钮一致 */
  53. .wy-nav-side .language-switch {
  54. font-size: 12px !important;
  55. }
  56. .wy-nav-side .language-switch__option {
  57. font-size: 12px !important;
  58. font-weight: 600;
  59. }
  60. /* 确保搜索框字体大小一致 */
  61. .wy-nav-side .wy-side-nav-search input[type="text"] {
  62. font-size: 14px !important;
  63. }
  64. /* 确保标题字体大小一致 */
  65. .wy-nav-side .wy-side-nav-search .icon {
  66. font-size: 16px !important;
  67. }
  68. .wy-nav-side .caption {
  69. font-size: 14px !important;
  70. font-weight: 600;
  71. }