From 96366fa310544ed3437647828f883a2b69c79343 Mon Sep 17 00:00:00 2001 From: Michael Devine Date: Sat, 9 Jul 2016 23:16:35 -0600 Subject: [PATCH] better navbar width, tuned to readthedocs --- docs/css/style(1).css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/css/style(1).css b/docs/css/style(1).css index eecd583c..d56510c1 100644 --- a/docs/css/style(1).css +++ b/docs/css/style(1).css @@ -748,7 +748,7 @@ } /** Tuesday 28th of June 2016 06:04:01 PM **/ -/** Custom for fixed Armbian navbar in wide windows (768px as per readthedocs theme) **/ +/** Custom for fixed Armbian navbar in wide windows (>768px and >=1400px as per readthedocs theme) **/ @media screen and (min-width: 769px) { #mega-menu-wrap-header-menu { position:fixed; @@ -757,3 +757,9 @@ width: calc(100% - 300px); } } +@media screen and (min-width: 1400px) { + #mega-menu-wrap-header-menu { + position:fixed; + width: 800px; + } +}