Change title slide text size and color in revealjs #5687
Answered
by
mcanouil
ManuelSpinola
asked this question in
Q&A
-
How can I change title slide text size and color in revealjs? |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
May 25, 2023
Replies: 2 comments
-
Use (S)CSS, see https://quarto.org/docs/presentations/revealjs/themes.html. To target the right element use your browser developper mode, usually right mouse button and "inspect". ---
title: "Untitled"
format: revealjs
include-in-header:
- text: |
<style>
#title-slide .title {
font-size: 4.5em;
color: #b22222;
}
</style>
---
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mcanouil
-
Thank you very much.
El jue, 25 may 2023 a las 11:44, Mickaël Canouil ***@***.***>)
escribió:
… Use (S)CSS, see https://quarto.org/docs/presentations/revealjs/themes.html
.
To target the right element use your browser developper mode, usually
right mouse button and "inspect".
—
Reply to this email directly, view it on GitHub
<#5687 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFI3FBY2EYG745FL4X3FGYLXH6K7XANCNFSM6AAAAAAYPFCGKQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
--
*Manuel Spínola, Ph.D.*
Instituto Internacional en Conservación y Manejo de Vida Silvestre
Universidad Nacional
Apartado 1350-3000
Heredia
COSTA RICA
***@***.*** ***@***.***>
***@***.***
Teléfono: (506) 8706 - 4662
Institutional website: ICOMVIS
<http://www.icomvis.una.ac.cr/index.php/manuel>
Blog sobre Ciencia de Datos: https://mspinola-ciencia-de-datos.netlify.app
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use (S)CSS, see https://quarto.org/docs/presentations/revealjs/themes.html.
To target the right element use your browser developper mode, usually right mouse button and "inspect".