improving looks & background

This commit is contained in:
2025-08-18 17:47:01 -03:00
parent 77cb22fcc9
commit 63be3a4dd5
5 changed files with 103 additions and 235 deletions

View File

@@ -12,46 +12,3 @@
filter: brightness(0.55);
}
.matrix-dot {
position: absolute;
background: rgba(255, 255, 255, 0.8);
border-radius: 50%;
box-shadow: 0 0 6px rgba(255, 255, 255, 0.4), 0 0 12px rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
pointer-events: none;
}
.connection-line {
position: absolute;
height: 2px;
background: linear-gradient(90deg,
rgba(100, 149, 237, 0) 0%,
rgba(138, 43, 226, 0.8) 50%,
rgba(100, 149, 237, 0) 100%);
transform-origin: left center;
opacity: 0;
transition: opacity 0.5s ease-in-out;
pointer-events: none;
z-index: -1;
box-shadow: 0 0 4px rgba(138, 43, 226, 0.4);
}
.connection-line.active {
opacity: 1;
animation: connectionPulse 2s ease-in-out infinite;
}
@keyframes connectionPulse {
0% {
filter: brightness(1);
box-shadow: 0 0 4px rgba(138, 43, 226, 0.4);
}
50% {
filter: brightness(1.5);
box-shadow: 0 0 8px rgba(138, 43, 226, 0.6), 0 0 16px rgba(100, 149, 237, 0.3);
}
100% {
filter: brightness(1);
box-shadow: 0 0 4px rgba(138, 43, 226, 0.4);
}
}