style: center all SVGs, images and GIFs in slides

Use display:block + auto margins to center visual elements
while keeping text left-aligned.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-04-14 01:39:02 +02:00
parent 86b6baa2c6
commit f33b3914cd

View File

@@ -45,6 +45,13 @@
text-align: left; text-align: left;
} }
.reveal .slides section svg,
.reveal .slides section > img {
display: block;
margin-left: auto;
margin-right: auto;
}
.reveal h1, .reveal h2 { text-align: left; } .reveal h1, .reveal h2 { text-align: left; }
.title-slide, .title-slide h1 { text-align: center !important; } .title-slide, .title-slide h1 { text-align: center !important; }