-
DescriptionHello there, My quarto version in 1.3.427
/*-- scss:defaults --*/
// fonts
$font-family-sans-serif: "Palatino Linotype", serif !default;
$toc-font-size: 3em;
$toc-color: red;
// colors
$body-bg: #f0f1eb !default;
$body-color: #000 !default;
$link-color: #51483d !default;
$selection-bg: #26351c;
// headings
$presentation-heading-font: "Palatino Linotype", serif !default;
$presentation-heading-color: #383d3d !default;
/*-- scss:rules --*/
.reveal a {
line-height: 1.3em;
} Thx and greetings! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Where did you find When playing around HTML and (S)CSS, the best way to understand and target the elements is to open the file in your favourite browser and use the inspect/developper mode. #TOC {
font-size: 5em;
} |
Beta Was this translation helpful? Give feedback.
-
I found the https://quarto.org/docs/output-formats/html-themes.html #TOC {
font-size: 5em;
} The way that learn how to custom scss file at Quarto is really helpful, make me more understand about it. |
Beta Was this translation helpful? Give feedback.
Where did you find
$toc-font-size
and$toc-color
?Available SCSS variables are described in https://quarto.org/docs/presentations/revealjs/themes.html#sass-variables and those are not in it.
When playing around HTML and (S)CSS, the best way to understand and target the elements is to open the file in your favourite browser and use the inspect/developper mode.