From 997b46a3f7b2ca599391bbcf94a8af3fc2e02f62 Mon Sep 17 00:00:00 2001 From: ansuz Date: Wed, 14 Sep 2016 16:02:20 +0200 Subject: [PATCH] limit the size of rendered images --- www/slide/index.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/www/slide/index.html b/www/slide/index.html index af2d9d473..a49363098 100644 --- a/www/slide/index.html +++ b/www/slide/index.html @@ -81,7 +81,12 @@ #content ol { font-size: 26px; } - + #content img { + position: relative; + max-width: 90%; + max-height: 90%; + margin: auto; + }