css updates for better header display on iphone sizes

This commit is contained in:
Andrew Davidson 2016-09-14 20:16:46 -04:00
parent ea255fdb41
commit a48ec42a7f
2 changed files with 18 additions and 1 deletions

View file

@ -25,6 +25,18 @@
width: 100px;
text-align:center;
margin-left: 10%;
@include media-query($on-palm) {
width: 100%;
margin: 0em auto;
}
}
.site-logo img {
@include media-query($on-palm) {
width: 100px;
}
}
.site-title {
@ -47,6 +59,11 @@
list-style-type: none;
margin: 0 10% 0 0;
font-size: 1.3em;
@include media-query($on-palm) {
display: none;
}
}
.site-nav li {

View file

@ -25,7 +25,7 @@ $grey-color-dark: darken($grey-color, 25%);
// Width of the content area
$content-width: 650px;
$on-palm: 300px;
$on-palm: 400px;
$on-laptop: 800px;