我有Sphinx建筑文档。
在source / conf.py中我有
def setup(app):
app.add_stylesheet('conduce-style.css')
在conduce-style.css
中h1 {
font-family: 'Gotham Ultra';
}
然后呈现:
看看它如何使用alabaster.css的样式用于h1并且交叉使用了style-style.css的样式?我希望它始终优先考虑主题样式表上的自定义样式表。我怎样才能在Sphinx中做到这一点?
答案 0 :(得分:1)
CSS有rules of priority。你可以尝试:
div.body h1
。更具体的选择胜利。!important
。