Reading this introductory text, I thought it is straightforward to color the body or bullet points on a specific slide green. I created my own css file containing the following lines:
body p {
font-size: 24px;
font-family: Frutiger Light;
color: orange;
}
li {
font-family: Frutiger Light;
font-size: 20px;
color: green;
}
.change {
color: green;
}
and referred to the css-class change by adding {.change} to my header in the rmarkdown file. However, this is completely ignored. I am lost and would very much appreciate a hint in how to solve this.
Here is a simple reproducible example. Please make sure that the css is located in the same folder than the rmd.