在ioslides的封面中更改字幕的字体颜色

时间:2019-02-18 08:11:49

标签: html css 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;
}

副标题呢?

1 个答案:

答案 0 :(得分:0)

我设法自己解决。通过在h2中选择slide.title-slide,我们可以修改所需的内容。

slides > slide.title-slide hgroup h2 {  
  color: red;
  font-size: 30px;
  letter-spacing: 10;
}