Improved font scaling on Android

This commit is contained in:
Marcin Kurczewski 2015-01-26 08:50:25 +01:00
parent 9090ac6fb9
commit 2ab4da11fc
7 changed files with 17 additions and 10 deletions

View file

@ -9,9 +9,15 @@ body {
overflow-y: scroll; overflow-y: scroll;
} }
@media all and (max-width: 40em) {
body {
font-size: 15px;
}
}
h1 { h1 {
font-weight: normal; font-weight: normal;
font-size: 30px; font-size: 160%;
} }
h2 { h2 {
@ -21,11 +27,11 @@ h2 {
h3 { h3 {
font-weight: normal; font-weight: normal;
font-size: 20px; font-size: 120%;
} }
small { small {
font-size: 13px; font-size: 87%;
} }
#middle { #middle {

View file

@ -40,7 +40,7 @@ input[type=password] {
box-shadow: 0 1px 2px -1px #e0e0e0 inset; box-shadow: 0 1px 2px -1px #e0e0e0 inset;
background: #fafafa; background: #fafafa;
font-family: 'Inconsolata', monospace; font-family: 'Inconsolata', monospace;
font-size: 17px; font-size: 110%;
text-overflow: ellipsis; text-overflow: ellipsis;
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;

View file

@ -147,12 +147,12 @@
vertical-align: top; vertical-align: top;
} }
#sidebar .essential li i.fa { #sidebar .essential li i.fa {
font-size: 30px; font-size: 200%;
} }
#sidebar .essential li a { #sidebar .essential li a {
display: block; display: block;
text-align: center; text-align: center;
font-size: 12px; font-size: 87%;
} }
#post-view #post-edit-target { #post-view #post-edit-target {

View file

@ -28,7 +28,7 @@
line-height: normal; line-height: normal;
} }
#tag-view small { #tag-view small {
font-size: 12px; font-size: 0.85em;
} }
#tag-view .siblings ul { #tag-view .siblings ul {

View file

@ -17,7 +17,7 @@
text-transform: lowercase; text-transform: lowercase;
font-variant: small-caps; font-variant: small-caps;
padding: 0.5em 1em; padding: 0.5em 1em;
font-size: 15px; font-size: 0.9em;
} }
#top-navigation li a:focus, #top-navigation li a:focus,
@ -34,7 +34,7 @@
} }
#top-navigation i { #top-navigation i {
font-size: 40px; font-size: 3em;
margin: 0 10px 5px; margin: 0 10px 5px;
} }

View file

@ -56,5 +56,5 @@
#user-list .user h1 { #user-list .user h1 {
margin-top: 0; margin-top: 0;
font-weight: normal; font-weight: normal;
font-size: 16pt; font-size: 1.25em;
} }

View file

@ -15,6 +15,7 @@
data-tag-categories='<%= JSON.stringify(tagCategories).replace(/'/g, '&#039;') %>'> data-tag-categories='<%= JSON.stringify(tagCategories).replace(/'/g, '&#039;') %>'>
/build --> /build -->
<meta charset="utf-8"/> <meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!-- build:remove --> <!-- build:remove -->
<title>szurubooru</title> <title>szurubooru</title>