install fullscreen; update amical.html to use

This commit is contained in:
kfitz
2023-06-22 17:17:31 -04:00
parent 62e5b1c5b4
commit 6c26eb2b85
4 changed files with 118 additions and 0 deletions

9
dist/fullscreen.css vendored Normal file
View File

@@ -0,0 +1,9 @@
/* Fullscreen images in cover of contain mode */
.reveal img.fullscreen {
position: absolute;
top: 50%;
bottom: auto;
left: 50%;
right: auto;
transform: translate( -50%, -50% ) scale( 100% );
}