File size: 602 Bytes
c2efbe6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | .floating-elements {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
overflow: hidden;
}
.floating-element {
position: absolute;
background: radial-gradient(circle, rgba(32, 52, 113, 0.1), rgba(246, 211, 101, 0.1));
border-radius: 50%;
filter: blur(1px);
opacity: 0.6;
}
.floating-element:nth-child(odd) {
background: radial-gradient(circle, rgba(255, 154, 158, 0.1), rgba(254, 207, 239, 0.1));
}
.floating-element:nth-child(3n) {
background: radial-gradient(circle, rgba(168, 237, 234, 0.1), rgba(254, 214, 227, 0.1));
} |