-
DescriptionHow do I change the font size for some bullet points within a list
|
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Nov 17, 2023
Replies: 1 comment 5 replies
-
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. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
CMFell
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use CSS and/or span/divs, see https://quarto.org/docs/authoring/markdown-basics.html#divs-and-spans.
or
Or plenty other CSS ways.