47 lines
1.2 KiB
CSS
47 lines
1.2 KiB
CSS
/* Neural Network Background CSS */
|
|
|
|
/* Make sure the neural network background is always visible */
|
|
#neural-network-background {
|
|
position: fixed !important;
|
|
top: 0 !important;
|
|
left: 0 !important;
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
z-index: -10 !important; /* Below content but above regular background */
|
|
pointer-events: none !important;
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
/* Override any solid background colors for the body */
|
|
body, body.dark {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
/* Make sure any background color is removed */
|
|
html.dark, html {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
/* Make sure any fixed backgrounds are removed */
|
|
#app-container {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
/* Ensure content is properly visible over the background */
|
|
.glass-morphism {
|
|
background-color: rgba(17, 24, 39, 0.6) !important;
|
|
backdrop-filter: blur(5px) !important;
|
|
}
|
|
|
|
body.dark .glass-navbar-dark {
|
|
background-color: rgba(10, 14, 25, 0.7) !important;
|
|
}
|
|
|
|
body .glass-navbar-light {
|
|
background-color: rgba(255, 255, 255, 0.7) !important;
|
|
}
|
|
|
|
/* Make sure footer has proper transparency */
|
|
footer {
|
|
background-color: rgba(10, 14, 25, 0.7) !important;
|
|
} |