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.

61 lines
1.1 KiB

  1. .config-manager {
  2. .welcome {
  3. text-align: center;
  4. padding: 50px 0 15px 0;
  5. color: mc('grey', '700');
  6. h2 {
  7. margin: 0;
  8. }
  9. }
  10. i.icon-loader {
  11. display: inline-block;
  12. color: mc('indigo', '500')
  13. }
  14. i.icon-check {
  15. color: mc('green', '500')
  16. }
  17. i.icon-square-cross {
  18. color: mc('red', '500')
  19. }
  20. i.icon-warning-outline {
  21. color: mc('orange', '500')
  22. }
  23. .tst-welcome-leave-active, .tst-welcome-enter-active {
  24. transition: all .5s;
  25. overflow-y: hidden;
  26. }
  27. .tst-welcome-leave, .tst-welcome-enter-to {
  28. opacity: 1;
  29. max-height: 200px;
  30. }
  31. .tst-welcome-leave-to, .tst-welcome-enter {
  32. opacity: 0;
  33. max-height: 0;
  34. padding-top: 0;
  35. }
  36. .progress-bar {
  37. width: 150px;
  38. height: 10px;
  39. background-color: mc('indigo', '50');
  40. border:1px solid mc('indigo', '100');
  41. border-radius: 3px;
  42. position: absolute;
  43. left: 15px;
  44. top: 21px;
  45. padding: 1px;
  46. > div {
  47. width: 5px;
  48. height: 6px;
  49. background-color: mc('indigo', '200');
  50. border-radius: 2px;
  51. transition: all 1s ease;
  52. }
  53. }
  54. }