front-ui-tweaker/PPR banner.css
scar 7c6d88d7f5 feat(PREP): Strips fades in and animate on loading pages content
Worked on a new feature that make the strips hidden while idle. They fade in and move during loading, then fade out.

I don't know the performance toll on usage.
2022-04-07 20:44:40 +02:00

37 lines
1.1 KiB
CSS

@-moz-document domain("ppr-stream.alkemics.com"),
domain("ppr-admin.alkemics.com") {
:root {
--stripe-size: 100px;
--color1: hsla(194, 71%, 30%, 1);
--color2: hsla(194, 77%, 35%, 1);
--duration: 1s;
--state: running;
}
.AuthLayoutFooter,
.Navbar.navbar.Navbar--PPR.bg-inverse {
background: repeating-linear-gradient(-45deg, hsla(194, 77%, 35%, 0) 25%, var(--color1) 50%, var(--color1) 75%);
background-color: var(--color2);
background-size: var(--stripe-size) var(--stripe-size);
animation: alkegrad var(--duration) linear 0s infinite normal var(--state);
transition: background 200ms linear;
}
.AuthLayoutFooter {
--stripe-size: 200px;
--duration: 40s;
}
.navbar:only-child {
--state: paused;
--color2: hsla(194, 71%, 30%, 1);
}
.PageTop>.Loader {
visibility: hidden;
}
@keyframes alkegrad {
from {
background-position: 0 0;
}
to {
background-position: var(--stripe-size) 0;
}
}
}