diff options
Diffstat (limited to 'skins/standard/global.css')
-rw-r--r-- | skins/standard/global.css | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index 39e6e4654..0b40fcb2a 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -63,7 +63,7 @@ /* wrapper (end) */ /* fixed global header (begin) */ - @media screen and (min-width: 1024px) { + @media screen and (min-width: 800px) { #wrapper { overflow: hidden; width: 100%; @@ -572,6 +572,27 @@ } /* header (end) */ +/* narrower global header (begin) */ + @media screen and (max-width: 1024px) { + #header .inner { + width: 800px; + } + + #header-nav .links a { + padding: 0; + width: 32px; + justify-content: center; + text-align: center; + } + + #header-nav .links a .label { + overflow: hidden; + width: 0; + height: 0; + } + } +/* narrower global header (end) */ + /* link lists (begin) */ ul.links { margin: 0; |