我目前正在创建使用sphinx_rtd_theme
一个狮身人面像的文档。我想知道如何改变已访问链接的颜色。
到目前为止,我只找到使用classic
主题(使用html_theme_options在conf.py文件)的可能性。但是我需要使用sphinx_rtd_theme
。
我想有使用本地的css文件(在_static)的可能性。举例来说,我已经在使用一个CSS文件来指定主题色:
.wy-side-nav-search, .wy-nav-top {
background: #0b750a;
}
任何提示?
解决了,很容易的(......)。我只是在我的CSS文件中添加以下:
a:visited {
color: blue;
}