???
Deploy / trigger (push) Successful in 35s

This commit is contained in:
2026-04-04 23:26:36 +02:00
parent d271d7939c
commit 8a9dc99496
7 changed files with 94 additions and 18 deletions
+43
View File
@@ -282,4 +282,47 @@ footer a {
.menu-toggle {
display: block;
}
}
/* --- SFONDO SPAZIALE ANIMATO --- */
.sfondo-spazio {
position: fixed; /* Lo fissa allo schermo */
top: 0; left: 0; width: 100%; height: 100%;
z-index: -1; /* Manda le stelle DIETRO le tue card e la navbar */
background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
overflow: hidden;
}
#stars-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
pointer-events: none;
background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
overflow: hidden;
}
#stars, #stars2, #stars3 { background: transparent; }
/* Stelle Piccole */
#stars { width: 1px; height: 1px; box-shadow: var(--shadows-small); animation: animStar 50s linear infinite; }
#stars::after { content: " "; position: absolute; top: 2000px; width: 1px; height: 1px; background: transparent; box-shadow: var(--shadows-small); }
/* Stelle Medie */
#stars2 { width: 2px; height: 2px; box-shadow: var(--shadows-medium); animation: animStar 100s linear infinite; }
#stars2::after { content: " "; position: absolute; top: 2000px; width: 2px; height: 2px; background: transparent; box-shadow: var(--shadows-medium); }
/* Stelle Grandi */
#stars3 { width: 3px; height: 3px; box-shadow: var(--shadows-big); animation: animStar 150s linear infinite; }
#stars3::after { content: " "; position: absolute; top: 2000px; width: 3px; height: 3px; background: transparent; box-shadow: var(--shadows-big); }
@keyframes animStar {
from { transform: translateY(0px); }
to { transform: translateY(-2000px); }
}
body {
color: white;
}