diff options
Diffstat (limited to 'fatcat_scholar/templates/base.html')
-rw-r--r-- | fatcat_scholar/templates/base.html | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/fatcat_scholar/templates/base.html b/fatcat_scholar/templates/base.html index 78d4f29..9c7aba8 100644 --- a/fatcat_scholar/templates/base.html +++ b/fatcat_scholar/templates/base.html @@ -30,15 +30,29 @@ */ </script> <style> + + {# bnewbold: fix light grey bars in header #} .ui.inverted.menu .item:before { background: none; } - @media only screen and (max-width: 479px) { + @media only screen and (max-width: 767px) { .mobile-hide { display: none !important; } } - @media only screen and (min-width: 480px) { + @media only screen and (min-width: 768px) { .mobile-only { display: none !important; } } + @media only screen and (max-width: 991px) { + .tablet-hide { display: none !important; } + } + @media only screen and (min-width: 992px) { + .tablet-only { display: none !important; } + } + @media only screen and (min-width: 1200px) { + .ui.container { + font-size: 16px; + line-height: 20px; + } + } {# for fulltext search result highlighting #} .search_highlights em { |