From 3979793d8371c1e03d730498d08ece9a3fc4604c Mon Sep 17 00:00:00 2001 From: Jonas Tobias Hopusch Date: Thu, 29 Jul 2021 23:44:54 +0200 Subject: [PATCH] Navigation border consistency fix --- static/css/general.css | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/static/css/general.css b/static/css/general.css index 478de27..0c25dae 100644 --- a/static/css/general.css +++ b/static/css/general.css @@ -19,14 +19,17 @@ header, footer { display: flex; flex-wrap: wrap; flex-direction: row; - border-collapse: collapse; + border: 2px solid white; + border-top: none; + border-left: none; text-align: center; } .globalnav-element { display: block; - border: 1px solid white; - border-collapse: collapse; + border: 2px solid white; + border-right: none; + border-bottom: none; background-color: #ddd; text-align: center; flex-basis: 0; @@ -65,6 +68,10 @@ hr { color: white; } + .globalnav { + border-color: black; + } + .globalnav-element { background-color: #222; border-color: black; @@ -85,6 +92,10 @@ hr { color: black; } + .globalnav { + border-color: white; + } + .globalnav-element { border-color: white; background-color: #ddd;