Compare commits

..

3 commits

Author SHA1 Message Date
683796ea7e Merge branch 'refs/heads/prednasky' 2025-02-06 16:57:15 +01:00
4a771b802b Průhledné pruhy 2025-02-06 14:48:32 +01:00
84ed9e09a7 Průhledné pruhy 2025-02-06 13:50:01 +01:00
2 changed files with 21 additions and 0 deletions

View file

@ -435,6 +435,7 @@ body.localweb, body.testweb, body.suprodweb {
height: 100%; height: 100%;
top: 0; top: 0;
z-index: -1000; z-index: -1000;
opacity: 0.7;
} }
&:before { left: 0; } &:before { left: 0; }

View file

@ -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; } }
/****************************************************************/