diff options
-rw-r--r-- | custom.css | 16 | ||||
-rw-r--r-- | preamble.tex | 2 |
2 files changed, 15 insertions, 3 deletions
@@ -1,4 +1,11 @@ /* see https://github.com/huyng/latex-simple-css */ +@media only screen and (min-width: 900px) { + body { + margin: 10em; + max-width: 42em; + } +} + body { /* Serif options */ /*font-family: "Times New Roman", Times, serif;*/ @@ -18,8 +25,6 @@ body { font-size: 14px; font-weight:300; line-height: 20px; - margin:10em; - max-width:42em; background:#fefefe; color:#333; } @@ -113,3 +118,10 @@ div.triviabox { border-left: 5px solid blue; border-right: 5px solid blue; } + +.yt-embed { + width: 588px; + height: 331px; + + max-width: 100%; +} diff --git a/preamble.tex b/preamble.tex index a51a5ae..dd0ff70 100644 --- a/preamble.tex +++ b/preamble.tex @@ -80,7 +80,7 @@ \iftexforhtTF{ \begin{figure} \HCode{ - <iframe width="588" height="331" src="https://www.youtube.com/embed/#1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> + <iframe class="yt-embed" src="https://www.youtube.com/embed/#1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> } \caption{#2} \end{figure} |