Dear All
I always like to have a nice professional background for the opening screen - I usually choose something pretty neutral.
I ve been experimenting with trying to get some animated backgrounds for login. eg like this
Animated CSS Backgrounds
Unfortunately I wasn't able to get those workings.
The only one I've managed to get working is a rather psychadelic change of colour.
body.function-login {
background: linear-gradient(132deg, #FC415A, #591BC5, #212335);
background-size: 400% 400%;
animation: Gradient 15s ease infinite;
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
padding:0;
margin:0px;
}
@keyframes Gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
Was wondering if we could share code of animations that users have managed to get working along with how we did it?