config-manager.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .config-manager {
  2. background-image: linear-gradient(to right, mc('indigo', '400'), mc('indigo', '600'));
  3. background-repeat: no-repeat;
  4. width: 100%;
  5. min-height: 100%;
  6. padding-top: 1rem;
  7. &::before {
  8. content: '';
  9. position: absolute;
  10. background-image: url('../svg/login-bg.svg');
  11. background-position: center bottom;
  12. background-size: cover;
  13. top: 0;
  14. left: 0;
  15. width: 100vw;
  16. height: 100vh;
  17. }
  18. .welcome {
  19. text-align: center;
  20. padding: 1rem 0 2rem 0;
  21. border-bottom: 1px solid mc('indigo', '50');
  22. margin-bottom: 1rem;
  23. img {
  24. max-height: 100px;
  25. }
  26. h2 {
  27. margin: 0;
  28. color: mc('indigo', '700');
  29. font-weight: 500;
  30. }
  31. }
  32. .is-logo {
  33. text-align: center;
  34. padding: .5rem 0 1.5rem 0;
  35. border-bottom: 1px solid mc('indigo', '50');
  36. margin-bottom: 1rem;
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. img {
  41. max-height: 64px;
  42. }
  43. h4 {
  44. font-size: 1.2rem;
  45. font-weight: 600;
  46. margin-left: 1.5rem;
  47. color: mc('grey', '700');
  48. }
  49. }
  50. i.icon-loader {
  51. display: inline-block;
  52. color: mc('indigo', '500')
  53. }
  54. i.ui-1_check-simple {
  55. color: mc('green', '500')
  56. }
  57. i.ui-2_ban-bold {
  58. color: mc('red', '500')
  59. }
  60. i.icon-warning-outline {
  61. color: mc('orange', '500')
  62. }
  63. .progress-bar {
  64. width: 150px;
  65. height: 10px;
  66. background-color: mc('indigo', '50');
  67. border:1px solid mc('indigo', '100');
  68. border-radius: 3px;
  69. position: absolute;
  70. left: 15px;
  71. top: 21px;
  72. padding: 1px;
  73. > div {
  74. width: 5px;
  75. height: 6px;
  76. background-color: mc('indigo', '200');
  77. border-radius: 2px;
  78. transition: all 1s ease;
  79. }
  80. }
  81. }