I am preparing an ioslides presentation. For reasons out of my control, all the text on the title slide needs to be white, and all the subsequent slides need to have white titles. The following CSS fixes everything except the text color for the author and date.
slides > slide.title-slide hgroup h1,
slides > slide hgroup h2,
slides > slide.title-slide hgroup .author,
slides > slide.title-slide hgroup .date {
color: white;
}
In general, where are all these css classes and labels documented? I try to find these things out by rendering my slides and viewing the source HTML, but not everything is made clear.
Author and date are contained inside common p tags. Use this:
<style>
slides > slide.title-slide p {
color: red;
}
</style>