styles.scss 1.29 KB
Newer Older
timothe 2004's avatar
timothe 2004 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
/* Styles globaux */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.gradient-custom {
  background: linear-gradient(to right, #667eea, #764ba2);
}

.card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.card-header {
  background-color: #f1f5fb;
  border-bottom: 1px solid #e3e6f0;
  padding: 15px 20px;
}

.btn-primary {
  background-color: #667eea;
  border-color: #667eea;
}

.btn-primary:hover {
  background-color: #5a6acf;
  border-color: #5a6acf;
}

.alert {
  border-radius: 8px;
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: #a496e9;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.badge-success {
  background-color: #28a745;
}

.badge-danger {
  background-color: #dc3545;
}

.badge-warning {
  background-color: #ffc107;
}

.badge-info {
  background-color: #17a2b8;
}

/* Animation pour les transitions d'état */
.fade-in {
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Étiquettes de statut workflow */
.status-badge {
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  margin-right: 5px;
}