20 lines
556 B
CSS
20 lines
556 B
CSS
@-moz-document domain("stream.alkemics.com"),
|
|
domain("admin.alkemics.com") {
|
|
.AuthLayoutFooter,
|
|
.Navbar.navbar.bg-inverse {
|
|
background: linear-gradient(-45deg, #00e1d0, #00c4ff, #0562e8, #8a25f9);
|
|
background-size: 400% 100% !important;
|
|
animation: salsigrad 60s linear infinite !important;
|
|
}
|
|
@keyframes salsigrad {
|
|
0% {
|
|
background-position: 0% 0%;
|
|
}
|
|
50% {
|
|
background-position: 100% 50%;
|
|
}
|
|
100% {
|
|
background-position: 0% 0%;
|
|
}
|
|
}
|
|
} |