prevent pdfs from being huge

This commit is contained in:
Pierre Bondoerffer 2017-08-08 11:52:16 +02:00
parent c427f375dd
commit d15280c6ce
No known key found for this signature in database
GPG Key ID: C0C7C0C5063F2236

View File

@ -59,8 +59,13 @@ body {
box-sizing: border-box; box-sizing: border-box;
font-family: Calibri,Ubuntu,sans-serif; font-family: Calibri,Ubuntu,sans-serif;
word-wrap: break-word; word-wrap: break-word;
media-tag * { media-tag {
max-width:100%; * {
max-width:100%;
}
iframe[type="application/pdf"] {
max-height:50vh;
}
} }
} }