38 lines
579 B
CSS
38 lines
579 B
CSS
/* Do not edit or override these styles! The system will likely break if you do. */
|
|
|
|
/*div#header, div#footer, div#controls, .slide {position: absolute;}*/
|
|
/*
|
|
html>body div#header,
|
|
html>body div#footer,
|
|
html>body div#controls,
|
|
html>body .slide {
|
|
position: fixed;
|
|
}
|
|
*/
|
|
body>main>article.presentation {
|
|
display: grid;
|
|
grid-template-areas: "slide";
|
|
}
|
|
|
|
body>main>article.presentation>.slide {
|
|
grid-area: slide;
|
|
}
|
|
|
|
.handout {
|
|
display: none;
|
|
}
|
|
|
|
/*
|
|
.layout {
|
|
display: block;
|
|
}
|
|
*/
|
|
|
|
.slide, .hideme, .incremental {
|
|
visibility: hidden;
|
|
}
|
|
|
|
#slide0 {
|
|
visibility: visible;
|
|
}
|