content.css 663 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .sync-wizard .step-content-container {
  2. flex-grow: 1;
  3. }
  4. .sync-wizard .step-content-form {
  5. display: none;
  6. animation-name: fade;
  7. animation-duration: 0.3s;
  8. }
  9. @keyframes fade {
  10. from {
  11. opacity: 0.4;
  12. }
  13. to {
  14. opacity: 1;
  15. }
  16. }
  17. .sync-wizard .step-content-form.step-active {
  18. display: block;
  19. }
  20. .sync-wizard .step-control-container {
  21. margin: 60px 0;
  22. }
  23. .sync-wizard .step-control {
  24. margin-right: 20px;
  25. color: #4a4a4a;
  26. border: 1px solid #c8d3e9;
  27. border-radius: 2px;
  28. height: 41px;
  29. width: 96px;
  30. background: none;
  31. cursor: pointer;
  32. }
  33. .sync-wizard .step-control:disabled {
  34. border-color: #d6d6d6;
  35. color: #d6d6d6;
  36. cursor: unset;
  37. }