You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
730B

  1. .status-container {
  2. display: flex;
  3. flex-direction: column;
  4. gap: 8px;
  5. }
  6. .status-item {
  7. display: flex;
  8. align-items: center;
  9. gap: 10px;
  10. }
  11. .status-icon {
  12. font-size: 24px;
  13. }
  14. .status-circle {
  15. width: 20px;
  16. height: 20px;
  17. border: 1px solid black;
  18. border-radius: 50%;
  19. background-color: gray;
  20. box-shadow: 0 0 10px blueviolet;
  21. animation: pulse 1s infinite alternate;
  22. }
  23. .status-circle.ok {
  24. background-color: green;
  25. }
  26. .status-circle.ko {
  27. background-color: red;
  28. }
  29. .status-text {
  30. font-weight: 500;
  31. align-self: center;
  32. }
  33. /* Animation comme le DoubleAnimation de WPF */
  34. @keyframes pulse {
  35. from {
  36. opacity: 1;
  37. }
  38. to {
  39. opacity: 0.6;
  40. }
  41. }