我想在我的 ioslides 的第一张幻灯片(封面)中更改字幕的颜色。我设法更改了标题的颜色、大小等,以及作者和日期。
但是,我不知道如何处理字幕。这是我的 YAML:
---
title: "My title"
subtitle: "How can I change the color of the subtitle"
author: "Mario Modesto-Mata"
date: "18 février 2019"
output:
ioslides_presentation:
css: estilos.css
smaller: yes
transition: slower
widescreen: no
---
此 CSS 用于作者和日期:
slides > slide.title-slide p {
color: red;
}
这是标题:
slides > slide.title-slide hgroup h1 { color: red;
font-size: 60px;
letter-spacing: 10;
}
副标题呢?