I’m trying to put a custom CSS background on a section and can’t figure out the CSS id for sections.
background: linear-gradient(133deg, #5a2466, #4fa0ce);
background-size: 400% 400%;
-webkit-animation: AnimationName 30s ease infinite;
-moz-animation: AnimationName 30s ease infinite;
animation: AnimationName 30s ease infinite;
@-webkit-keyframes AnimationName {
0%{background-position:0% 0%}
50%{background-position:93% 100%}
100%{background-position:0% 0%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 0%}
50%{background-position:93% 100%}
100%{background-position:0% 0%}
}
@keyframes AnimationName {
0%{background-position:0% 0%}
50%{background-position:93% 100%}
100%{background-position:0% 0%}
}