diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-08 21:07:53 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-08 21:07:53 +0200 |
commit | ecf9cffce76174aea6fdccebf2bf4b03ded6ae3c (patch) | |
tree | d3e66904a1c8f72e78b7724d4b44af30535ae9f0 /public | |
parent | a5427163ced9f99044813058ddf62548debc673c (diff) |
app: increase font size on tablet/desktop devices
Diffstat (limited to 'public')
-rw-r--r-- | public/static/mobile.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/public/static/mobile.css b/public/static/mobile.css index d319c59..a0fe99e 100644 --- a/public/static/mobile.css +++ b/public/static/mobile.css @@ -4,8 +4,16 @@ div.app { margin-right: auto; } -div.app > ul > li { - font-size: 35%; +@media only screen and (max-width: 600px) { + div.app > ul > li { + font-size: 35%; + } +} + +@media only screen and (min-width: 600px) { + div.app > ul > li { + font-size: 40%; + } } div.app .moreinfo { |