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
1 changed files with 7 additions and 2 deletions

View File

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