header.css 874 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .sync-wizard .step-index-list {
  2. display: flex;
  3. margin: 0;
  4. padding: 0;
  5. min-width: 800px;
  6. color: #7d7d7d;
  7. margin-bottom: 60px;
  8. }
  9. .sync-wizard .step-index-list li {
  10. list-style: none;
  11. flex-grow: 1;
  12. }
  13. .sync-wizard .step-index-list li.step-active {
  14. color: #4883fb;
  15. }
  16. .sync-wizard .step-index-list li.step-active .step-index-label {
  17. border-color: #4883fb;
  18. outline: 1px solid #4883fb;
  19. }
  20. .sync-wizard .step-index-item {
  21. display: flex;
  22. align-items: center;
  23. }
  24. .sync-wizard .step-index-list li:not(:last-child) .step-index-item::after {
  25. content: '';
  26. background-color: #7d7d7d;
  27. height: 1px;
  28. flex-grow: 1;
  29. }
  30. .sync-wizard .step-index-desc {
  31. margin-top: 10px;
  32. }
  33. .sync-wizard .step-index-label {
  34. width: 34px;
  35. height: 34px;
  36. border: 1px solid #7d7d7d;
  37. border-radius: 17px;
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. }