Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
683796ea7e | |||
4a771b802b | |||
84ed9e09a7 |
2 changed files with 21 additions and 0 deletions
|
@ -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; }
|
||||||
|
|
20
mamweb/static/css/rozliseni.css
Normal file
20
mamweb/static/css/rozliseni.css
Normal 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; } }
|
||||||
|
/****************************************************************/
|
Loading…
Reference in a new issue