From 4a771b802b226c8810230e57c1936b435613eff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=C3=A1=C5=A1=20Havelka?= Date: Thu, 6 Feb 2025 14:48:32 +0100 Subject: [PATCH] =?UTF-8?q?Pr=C5=AFhledn=C3=A9=20pruhy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mamweb/static/css/rozliseni.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 mamweb/static/css/rozliseni.css diff --git a/mamweb/static/css/rozliseni.css b/mamweb/static/css/rozliseni.css new file mode 100644 index 00000000..93c11668 --- /dev/null +++ b/mamweb/static/css/rozliseni.css @@ -0,0 +1,20 @@ +/**** ROZLIŠENÍ MEZI LOKÁLNÍM, TESTOVACÍM A PRODUKČNÍM WEBEM ****/ +body.localweb, body.testweb, body.suprodweb { + &:before, &:after { + content: ""; + position: fixed; + width: 20px; + height: 100%; + top: 0; + z-index: -1000; + opacity: 0.7; + } + + &:before { left: 0; } + &:after { right: 0; } +} + +body.localweb { &:before, &:after { background: greenyellow; } } +body.testweb { &:before, &:after { background: darkorange; } } +body.suprodweb { &:before, &:after { background: red; } } +/****************************************************************/