This commit is contained in:
2026-03-18 17:28:29 +01:00
parent 2a249e16d4
commit 18c26e3cc2
3 changed files with 138 additions and 6 deletions

View File

@@ -264,6 +264,66 @@ body {
50% { opacity: 0.4; transform: scale(0.75); }
}
.progress-track {
height: 6px;
border-radius: 99px;
background: rgba(255, 255, 255, 0.1);
overflow: hidden;
}
.progress-fill {
height: 100%;
border-radius: 99px;
background: linear-gradient(90deg, var(--ok), #4de8dd);
transition: width 0.4s ease;
min-width: 4px;
}
.progress-phase {
color: #ffe2a3;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.current-file-box {
display: flex;
align-items: baseline;
gap: 0.5rem;
background: rgba(0, 0, 0, 0.35);
border: 1px solid rgba(255, 183, 3, 0.25);
border-radius: 8px;
padding: 0.35rem 0.6rem;
font-size: 0.78rem;
overflow: hidden;
}
.current-file-label {
color: #ffb703;
font-size: 0.68rem;
text-transform: uppercase;
letter-spacing: 0.6px;
flex-shrink: 0;
}
.current-file-name {
color: #e0f7fa;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
/* scorre il nome da destra a sinistra se troppo lungo */
animation: marquee-file 12s linear infinite;
display: inline-block;
max-width: 100%;
}
@keyframes marquee-file {
0% { transform: translateX(0); }
40% { transform: translateX(0); }
90% { transform: translateX(calc(-100% + 200px)); }
100% { transform: translateX(0); }
}
@media (max-width: 768px) {
.hero-panel,
.log-panel {