如何更改 Rpres 中的子项目符号点字体大小?
How to change sub-bullet points font size in Rpres?
我正在使用 R 演示文稿制作谈话幻灯片。我正在尝试使用不同大小的项目符号点,因此子项目符号点 (blah2) 小于主要项目符号点 (blah)。
我知道可以使用 CSS 样式表来修改样式,它可以内嵌在幻灯片代码之前。我修改了它,但没有给我想要的结果:
Presentation Title
========================================================
author:
date: 20/03/18
<style>
.reveal ul,
.reveal ol {
font-size: 40px;
}
.reveal ol p{
font-size: 20px;
}
</style>
Slide 1
========================================================
- blah
- blah2
我刚刚打过这场仗,FML 很痛苦。
我最终在 css 中这样做了:
/* body text, ordered and unordered list styles */
.reveal ul,
.reveal ol,
.reveal p{
font-size: 180%;
line-height: 110%;
list-style-type: disc;
}
/* slide titles */
.reveal h3 {
font-size: 200%;
}
/* heading for slides with two hashes ## */
.reveal .slides section .slideContent h2 {
font-size: 40px;
font-weight: bold;
color: green;
}
请注意,我将列表位和 p 全部集中在一起。我希望它们总是同时改变,所以我一次分配它们。
我正在使用 R 演示文稿制作谈话幻灯片。我正在尝试使用不同大小的项目符号点,因此子项目符号点 (blah2) 小于主要项目符号点 (blah)。
我知道可以使用 CSS 样式表来修改样式,它可以内嵌在幻灯片代码之前。我修改了它,但没有给我想要的结果:
Presentation Title
========================================================
author:
date: 20/03/18
<style>
.reveal ul,
.reveal ol {
font-size: 40px;
}
.reveal ol p{
font-size: 20px;
}
</style>
Slide 1
========================================================
- blah
- blah2
我刚刚打过这场仗,FML 很痛苦。
我最终在 css 中这样做了:
/* body text, ordered and unordered list styles */
.reveal ul,
.reveal ol,
.reveal p{
font-size: 180%;
line-height: 110%;
list-style-type: disc;
}
/* slide titles */
.reveal h3 {
font-size: 200%;
}
/* heading for slides with two hashes ## */
.reveal .slides section .slideContent h2 {
font-size: 40px;
font-weight: bold;
color: green;
}
请注意,我将列表位和 p 全部集中在一起。我希望它们总是同时改变,所以我一次分配它们。