我正在使用GitPitch创建代码幻灯片:https://github.com/gitpitch/gitpitch/wiki/Code-Slides
对于我的代码幻灯片,我希望文本尽可能大。
我看到GitPitch服务利用了Reveal.js。
https://github.com/gitpitch/gitpitch/wiki/Slideshow-Custom-CSS
在Reveal.js CSS类中,是否有推荐的方法来拉伸/扩展/放大代码示例的字体?
最佳答案
以下CSS在全屏模式下似乎可以正常工作。
.reveal pre code {
font-size: 1.3em;
line-height: 1.2;
}
.reveal pre {
width: 120%;
margin-left: -10%;
}