diff options
| author | tunkki <tunkki@tunkkikone> | 2016-08-14 19:47:09 +0300 |
|---|---|---|
| committer | tunkki <tunkki@tunkkikone> | 2016-08-14 19:47:09 +0300 |
| commit | 07a43ca336f59bda14bb527ee0e09d682cedeb26 (patch) | |
| tree | 36c32ecebf1f82d4fa89eebd62dc5a5645e6cd3a | |
| parent | fd073bed4077f6a8ab284d53d852c35245bcb309 (diff) | |
Cap info text font size at 60px
| -rw-r--r-- | public/style.css | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/public/style.css b/public/style.css index ea0dc90..ff2cf54 100644 --- a/public/style.css +++ b/public/style.css @@ -39,12 +39,21 @@ h1 { justify-content: center; } + .system-title { font-size: 7vw; } -.system-info-elem { - font-size: 5vw; +@media all and (min-width: 1200px) { + .system-info-elem { + font-size: 60px; + } +} + +@media all and (max-width: 1200px) { + .system-info-elem { + font-size: 5vw; + } } .good-system { |
