31 lines
905 B
SCSS
31 lines
905 B
SCSS
/* custom.scss */
|
|
#title-slide h1 {
|
|
font-size: 1.4em !important;
|
|
line-height: 1.2 !important;
|
|
}
|
|
|
|
/* Fallback: Make it "nuclear" if the above fails */
|
|
.reveal .slides section#title-slide h1 {
|
|
font-size: 1.2em !important;
|
|
}
|
|
|
|
.reveal .slides section.title-slide {
|
|
background-color: #ffffff !important; /* Force white background */
|
|
}
|
|
.reveal .slides section.title-slide h1 {
|
|
color: #000000 !important;
|
|
}
|
|
.reveal .slides section.title-slide p,
|
|
.reveal .slides section.title-slide .quarto-title-author-name {
|
|
color: #333333 !important;
|
|
}
|
|
$font-family-monospace: "Atkinson Hyperlegible Mono", monospace !default;
|
|
|
|
/*-- scss:defaults --*/
|
|
|
|
/* Use the name exactly as defined in fonts.css */
|
|
$font-family-sans-serif: "Atkinson Hyperlegible Next", sans-serif !default;
|
|
$presentation-heading-font: "Atkinson Hyperlegible Next", sans-serif !default;
|
|
|
|
/* Other tweaks */
|
|
$presentation-font-size-root: 40px; |