diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2016-10-08 10:18:42 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2016-10-08 10:18:42 -0400 |
| commit | 844368e1915f975eebf6c74b7f05a03c2f783877 (patch) | |
| tree | ce6bd83f18f9353a6209fa843894030764a65074 /www/css | |
| parent | e86a3b8a9e1e6716b539adf010c528192c55dee1 (diff) | |
#346 - display system time only if width >=700px. Also useful to check if montage refresh is happening
Former-commit-id: d449a0a0f62e6c6b6c9226af3c4a3cba7ca32bb5
Diffstat (limited to 'www/css')
| -rw-r--r-- | www/css/style.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www/css/style.css b/www/css/style.css index 3f625ef2..461d2750 100644 --- a/www/css/style.css +++ b/www/css/style.css @@ -920,3 +920,15 @@ body { color: #fff !important; } +@media (min-width:700px) { + .montage-time { + display:block !important; + line-height:250%; + } +} + +@media (max-width:699px) { + .montage-time { + display:none !important; + } +} |
