Files
Freedom-Loader/public/styles/components/progressBar.css
2025-11-14 18:42:15 +01:00

43 lines
799 B
CSS

/* Wrapper de la barre de téléchargement */
#downloadProgressWrapper {
width: 100%;
max-width: 400px;
height: 12px;
background-color: #444;
border-radius: 6px;
overflow: hidden;
margin: 10px auto;
display: none;
box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
/* Barre de progression */
#downloadProgress {
height: 100%;
width: 0%;
background-color: var(--video-info-link-color, #4caf50);
border-radius: 6px 0 0 6px;
transition: width 0.2s ease;
}
#downloadProgressText {
text-align: center;
font-size: 0.8rem;
color: #fff;
position: absolute;
width: 100%;
top: -20px;
}
/* Responsive pour mobile */
@media (max-width: 480px) {
#downloadProgressWrapper {
max-width: 90%;
height: 10px;
}
#downloadProgressText {
font-size: 0.7rem;
}
}