Sphinx:如何设置访问链接的颜色(sphinx_rtd_theme)

时间:2019-02-06 13:15:37

标签: css colors hyperlink python-sphinx

我当前正在使用sphinx_rtd_theme创建Sphinx文档。我想知道如何更改访问链接的颜色。

到目前为止,我仅发现使用classic主题的可能性(使用conf.py文件中的html_theme_options)。但是我需要使用 sphinx_rtd_theme

我想有可能使用本地的CSS文件(在_static中)。例如,我已经使用css文件指定主题颜色:

.wy-side-nav-search, .wy-nav-top {
    background: #0b750a;
}

有任何提示吗?

1 个答案:

答案 0 :(得分:0)

已解决,非常容易(...)。我只需要将此添加到我的CSS文件中即可:

a:visited {
  color: blue;
}