From b297498ca9ac07bb61064767fcae88dd1675cc2b Mon Sep 17 00:00:00 2001 From: Albert S Date: Tue, 26 Oct 2021 23:06:47 +0200 Subject: [PATCH] template: Don't render searchbar in portrait. Show link instead Issue: #18 --- template/quitesimple/general_header | 3 +- template/quitesimple/page_header | 5 ++- template/quitesimple/style.css | 64 +++++++++++++++-------------- 3 files changed, 39 insertions(+), 33 deletions(-) diff --git a/template/quitesimple/general_header b/template/quitesimple/general_header index 1a1326c..ed114c4 100644 --- a/template/quitesimple/general_header +++ b/template/quitesimple/general_header @@ -13,9 +13,10 @@
  • Recent changes
  • All pages
  • All categories
  • + diff --git a/template/quitesimple/page_header b/template/quitesimple/page_header index 447b8a7..fd00bc3 100644 --- a/template/quitesimple/page_header +++ b/template/quitesimple/page_header @@ -13,6 +13,7 @@
  • Recent changes
  • All pages
  • All categories
  • + - \ No newline at end of file + diff --git a/template/quitesimple/style.css b/template/quitesimple/style.css index dc9613d..b2a4f2b 100644 --- a/template/quitesimple/style.css +++ b/template/quitesimple/style.css @@ -23,7 +23,6 @@ h1, h2, h3 { margin: 0; padding: 0; - display: inline; } nav @@ -37,6 +36,7 @@ nav grid-area: nav; } + nav ul { background-color: #062463; @@ -47,16 +47,12 @@ nav ul display: flex; align-items: center; flex-wrap: wrap; - - } + nav li { margin: 0; padding: 0; - - - } nav a, nav a:visited @@ -68,7 +64,6 @@ nav a, nav a:visited font-weight: bold; text-align: center; line-height: 100%; - } nav a:hover, nav a:focus @@ -81,8 +76,6 @@ nav a:hover, nav a:focus font-weight: bold; } - - a, a:visited { color: #062463;; @@ -92,40 +85,36 @@ a:hover { background-color: #062463; color: white; - } #content { -padding: 15px; -font-family: monospace; -font-size: 14pt; -flex: 1; -grid-area: main + padding: 15px; + font-family: monospace; + font-size: 14pt; + flex: 1; + grid-area: main } #sidebar { -grid-area: side; - + grid-area: side; } #sidebar ul { -list-style-type: none; - + list-style-type: none; } #sidebar a, a:visited { color: #062463; - } #sidebar a:hover { - background-color: #062463; - color: white; + background-color: #062463; + color: white; } #content a, a:visited @@ -135,11 +124,10 @@ list-style-type: none; #content a:hover { - background-color: #062463; - color: white; - - + background-color: #062463; + color: white; } + footer { width: 100%; @@ -160,6 +148,7 @@ footer ul flex-wrap: wrap; align-items: center; } + footer li { margin: 0; @@ -168,14 +157,12 @@ footer li line-height: 45px; color: white; font-weight: bold; - //flex: 1 1 0; text-align: center; } footer a, a:visited { text-decoration: none; - color: white; display: inline-block; } @@ -190,7 +177,7 @@ footer a:hover, ul#nav a:focus #cats { -background-color: #062463; + background-color: #062463; } .letter_search_result @@ -198,20 +185,27 @@ background-color: #062463; text-decoration: underline; font-weight: bold; } + ol { counter-reset: item; } + .indexlink { -display: block; + display: block; } + .notexists { color: red !important; font-weight: bold; } +#searchlink +{ + display: none; +} @media screen and (orientation: portrait) { @@ -219,13 +213,23 @@ display: block; { display: none; } + #footer li:nth-child(-n+2) { display: none; } + #footer li:nth-of-type(3) { text-align: center; width: 100%; } + + #searchlink { + display: inline; + } + + #searchbar { + display: none; + } }