🎨 style: update CSS and remove unused JS for improved design consistency

This commit is contained in:
2025-05-02 18:57:01 +02:00
parent 54a5ccc224
commit 42a7485ce1
5 changed files with 395 additions and 624 deletions

View File

@@ -103,50 +103,4 @@ body.dark footer {
body:not(.dark) footer {
background-color: rgba(249, 250, 251, 0.92) !important;
border-top: 1px solid rgba(220, 220, 220, 0.8) !important;
}
/* Neural Network Background für Dark & Light Mode */
.neural-network-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
overflow: hidden;
opacity: 0.8;
transition: opacity 0.5s ease;
}
.neural-network-bg {
width: 100%;
height: 100%;
}
/* Dark Mode Netzwerk-Hintergrund */
.dark .neural-network-container {
opacity: 0.5;
}
.dark .neural-network-bg .node {
fill: rgba(139, 92, 246, 0.4);
}
.dark .neural-network-bg .link {
stroke: rgba(139, 92, 246, 0.15);
}
/* Light Mode Netzwerk-Hintergrund */
body:not(.dark) .neural-network-container {
opacity: 0.25;
}
body:not(.dark) .neural-network-bg .node {
fill: rgba(124, 58, 237, 0.35);
}
body:not(.dark) .neural-network-bg .link {
stroke: rgba(124, 58, 237, 0.15);
stroke-width: 1.25;
}