答案 0 :(得分:1)
在样式文件中设置fontSize
样式的code
属性。
e.g。
code:
parent: literal
fontSize: 10
答案 1 :(得分:0)
您需要在目录mysources/_templates
中使用layout.html,并在mysources/conf.py
中需要声明templates_path = ['_templates']
。
在layout.html中添加声明
div.highlight {
font-size : 0.8em; /* or another value you prefer */
}
这对我有用,因为我使用了html_theme sphinxdoc 。也许在其他主题中声明不同。如果是这样,你必须通过html调试器找出声明,例如Firefox中的 Inspektor 或Chrome中的Developer Tools或IE中的DOM Explorer。
答案 2 :(得分:0)
一些内置主题 (alabaster) 接受 custom.css
的使用。
创建 _static/custom.css
并添加以下内容以调整 code-block
字体大小:
_static/custom.css:
.highlight { background: #f8f8f8; font-size: x-small;}