Skip to content
Discussion options

You must be logged in to vote

Use CSS and/or span/divs, see https://quarto.org/docs/authoring/markdown-basics.html#divs-and-spans.

---
title: "example"
format: revealjs
---

## Slide with bullets

::: {.incremental}

* Bullet 1
* Bullet 2
    + [This text should have a smaller font size]{style="font-size:0.5em"}
* Another bullet;

:::

or

---
title: "example"
format: revealjs
include-in-header:
  - text: |
      <style type="text/css">
      ul li ul li {
        font-size: 0.5em;
      }
      </style>
---

## Slide with bullets

::: {.incremental}

* Bullet 1
* Bullet 2
    + This text should have a smaller font size
* Another bullet;

:::

Or plenty other CSS ways.

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@CMFell
Comment options

@mcanouil
Comment options

@JosiahParry
Comment options

@mcanouil
Comment options

@cscheid
Comment options

Answer selected by CMFell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
revealjs Issues with the revealjs format html Issues with HTML and related web technology (html/css/scss/js) themes Related to HTML theming or any other style related issue (like highlight-style)
4 participants