Add media query display to regular version of resume

This commit is contained in:
Danila Fedorin 2019-11-10 17:12:00 -08:00
parent 7eae5f6539
commit 0bed6548a8
2 changed files with 21 additions and 0 deletions

View File

@ -12,6 +12,16 @@ body {
font-family: "Raleway";
line-height: 1.3em;
font-size: 14px; }
@media not print {
body {
max-width: 215.9mm;
max-height: 279.4mm;
overflow: hidden;
margin-top: 10px;
padding-top: 5px;
margin-left: auto;
margin-right: auto;
box-shadow: 0px 0px 5px #dadada; } }
header {
text-align: center;

View File

@ -22,6 +22,17 @@ body {
font-family: $text-font;
line-height: 1.3em;
font-size: 14px;
@media not print {
max-width: 215.9mm;
max-height: 279.4mm;
overflow: hidden;
margin-top: 10px;
padding-top: 5px;
margin-left: auto;
margin-right: auto;
box-shadow: 0px 0px 5px #dadada;
}
}
header {