Albisrieden/assets/scss/utilities/_background.scss
2025-01-07 04:13:11 +01:00

17 lines
487 B
SCSS

// ----------------------------------------------
// Background Style
// ----------------------------------------------
.radial-gradient {
position: relative;
&::before {
content: "";
position: absolute;
height: 100%;
width: 100%;
opacity: 0.3;
background: radial-gradient(rgb(210, 241, 223), rgb(211, 215, 250), rgb(186, 216, 244)) 0% 0% / 400% 400%;
animation: 15s ease 0s infinite normal none running gradient;
}
}