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

@ -14,15 +14,12 @@ body, h1, h2, h3, h4, h5, h6 {
}
body {
/* Flex box: center everything horizontally */
display: flex;
justify-content: center;
font-size: 12pt;
font-size: 10pt;
}
h1 {
font-family: "Love Ya Like A Sister", Georgia, serif;
font-size: 4.5em;
font-size: 4em;
margin-bottom: 0.25em;
}
@ -54,3 +51,21 @@ a {
-webkit-transition: color 100ms;
transition: color 100ms;
}
/* Tablets */
@media only screen and (min-width: 600px) {
}
/* Desktops */
@media only screen and (min-width: 768px) {
body {
/* Flex box: center everything horizontally */
display: flex;
justify-content: center;
font-size: 10pt;
}
h1 {
font-size: 4em;
}
}