badges.css 676 B

1234567891011121314151617181920212223242526272829303132
  1. /* Style de base pour tous les badges */
  2. .badge {
  3. display: inline-block;
  4. padding: 5px 10px;
  5. font-size: 12px;
  6. font-weight: bold;
  7. border-radius: 12px;
  8. text-transform: uppercase;
  9. color: #fff;
  10. margin-right: 5px;
  11. }
  12. /* Badge pour l'état "Publié" */
  13. .badge-published {
  14. background-color: #28a745; /* Vert */
  15. }
  16. /* Badge pour l'état "Brouillon" */
  17. .badge-draft {
  18. background-color: #ffc107; /* Jaune */
  19. color: #333; /* Couleur du texte sur fond jaune */
  20. }
  21. /* Badge pour l'état "En révision" */
  22. .badge-reviewed {
  23. background-color: #17a2b8; /* Bleu clair */
  24. }
  25. /* Badge pour l'état "Archivé" */
  26. .badge-rejected {
  27. background-color: #c40928; /* Rouge */
  28. }