Typography for larger viewports. Closes #533

This commit is contained in:
Josh Habdas 2016-09-16 11:43:02 -05:00
parent 09b42ec322
commit a48327908e
No known key found for this signature in database
GPG key ID: BB7367EE9A70A631

View file

@ -14,6 +14,14 @@ html {
font-size: 18px; font-size: 18px;
} }
@include breakpoint($large) {
font-size: 20px;
}
@include breakpoint($x-large) {
font-size: 22px;
}
-webkit-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%; -ms-text-size-adjust: 100%;
} }
@ -176,4 +184,4 @@ input[type="search"]::-webkit-search-cancel-button {
textarea { textarea {
overflow: auto; /* remove vertical scrollbar in IE6-9*/ overflow: auto; /* remove vertical scrollbar in IE6-9*/
vertical-align: top; /* readability and alignment cross-browser*/ vertical-align: top; /* readability and alignment cross-browser*/
} }