I'm using reveal.js and trying to sort out how to force my slides to the top left-most corner of the page. That seems like it should be straightforward, but when I use the Element inspector it so radically changes the page that I can't even begin to zero in on how to move the slides up to the top.
Adding this to my theme:
.reveal .slides>section,
.reveal .slides>section>section {
padding: 0;}
Bumped it up a smidge (reveal.css has the padding set to 20px 0
) but there's still white space at the top of each slide.
text-align
,margin: 0 auto
,position: absolute; left: 50%; margin-left: -[halfWidth]px
... – Platinic