89 lines
1.3 KiB
CSS
89 lines
1.3 KiB
CSS
/* FavMasToKey - Styles personnalisés */
|
|
|
|
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.container {
|
|
max-width: 900px;
|
|
}
|
|
|
|
h1 {
|
|
color: #563d7c;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.step {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-title {
|
|
color: #563d7c;
|
|
border-bottom: 1px solid #e9ecef;
|
|
padding-bottom: 1rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
#log-container {
|
|
font-family: 'Courier New', monospace;
|
|
font-size: 0.85rem;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#operation-log .log-entry {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
#operation-log .success {
|
|
color: #28a745;
|
|
}
|
|
|
|
#operation-log .error {
|
|
color: #dc3545;
|
|
}
|
|
|
|
#operation-log .info {
|
|
color: #17a2b8;
|
|
}
|
|
|
|
#operation-log .warning {
|
|
color: #ffc107;
|
|
}
|
|
|
|
/* Animation pour montrer le progrès */
|
|
@keyframes progress-pulse {
|
|
0% { opacity: 1; }
|
|
50% { opacity: 0.7; }
|
|
100% { opacity: 1; }
|
|
}
|
|
|
|
.progress-bar.active {
|
|
animation: progress-pulse 2s infinite;
|
|
}
|
|
|
|
/* Styles pour les boutons */
|
|
.btn-primary {
|
|
background-color: #563d7c;
|
|
border-color: #563d7c;
|
|
}
|
|
|
|
.btn-primary:hover, .btn-primary:focus {
|
|
background-color: #452d6b;
|
|
border-color: #452d6b;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.container {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.card-body {
|
|
padding: 1.25rem;
|
|
}
|
|
} |