是否可以更改狮身人面像网页上标题的颜色?我在[[toctree中使用:caption:
指令,但标题的颜色几乎与侧边栏相同。作为参考,here是指向页面的链接,标题很难看到,这是我的索引文件:
Contents
============
.. toctree::
:caption: User Documentation
:maxdepth: 2
overview
installation
tutorial
.. toctree::
:maxdepth: 2
:caption: Developer Documentation
dev/conventions
dev/enviroment
dev/docs
dev/site
doc/modules
* :ref:`genindex`
* :ref:`modindex`
.. toctree::
:maxdepth: 2
:caption: Support
trouble/faq
trouble/issuetracker
trouble/contact
source/_static/custom.css
put中:@import url("default.css");
span.caption-text {
color: red;
}
toctree
中的标题文本。如果要在标题栏中更改标题颜色-仅在标题栏中-您应该添加此内容
.wy-menu > .caption > span.caption-text {
color: #ffffff;
}