From 944e3a03cb88cafd1bbbd01adbf325c07defce5a Mon Sep 17 00:00:00 2001 From: Albert S Date: Fri, 22 Feb 2019 10:40:02 +0100 Subject: [PATCH] template/quitesimple: hack to hide sidebar in portrait mode --- template/quitesimple/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/template/quitesimple/style.css b/template/quitesimple/style.css index 4a9f09c..59607b4 100644 --- a/template/quitesimple/style.css +++ b/template/quitesimple/style.css @@ -211,3 +211,12 @@ display: block; color: red !important; font-weight: bold; } + + +@media screen and (orientation: portrait) +{ + #sidebar + { + display: none; + } +}