32 lines
479 B
CSS
32 lines
479 B
CSS
:root {
|
|
--back-color: #00FF44;
|
|
--main-color: #000000;
|
|
}
|
|
|
|
.closedBackground{
|
|
visibility: collapse;
|
|
}
|
|
|
|
.openBackground{
|
|
visibility: visible;
|
|
}
|
|
|
|
.openBackground#texture{
|
|
opacity: .5;
|
|
z-index: -31;
|
|
}
|
|
|
|
.openBackground#background{
|
|
mix-blend-mode: difference;
|
|
z-index: -30;
|
|
filter: brightness(133%) saturate(33%) grayscale();
|
|
transform: rotate(180deg);
|
|
position: absolute;
|
|
margin-top: -9%;
|
|
height: 120%;
|
|
}
|
|
|
|
#lolStatus{
|
|
animation: blink 3.33s infinite;
|
|
}
|