Add some media queries for small devices

This commit is contained in:
Eryn Wells 2017-05-05 08:26:34 -07:00
parent db5b9a676f
commit d77751eb9d
3 changed files with 57 additions and 20 deletions

View file

@ -5,7 +5,8 @@
}
#resume {
width: 640px;
width: 100%;
margin: 8px;
}
#resume h1 a {
@ -92,3 +93,11 @@ dd {
margin: 0;
margin-left: 1em;
}
/* Desktops */
@media only screen and (min-width: 768px) {
#resume {
width: 640px;
margin: 0;
}
}