setup.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .setup {
  2. background-color: #1565c0;
  3. background-image: url('../static/svg/config-bg.svg');
  4. width: 100%;
  5. min-height: 100%;
  6. padding-top: 1rem;
  7. .welcome {
  8. text-align: center;
  9. padding: 1rem 0 2rem 0;
  10. border-bottom: 1px solid mc('blue', '50');
  11. margin-bottom: 1rem;
  12. img {
  13. max-height: 100px;
  14. }
  15. h2 {
  16. margin: 0;
  17. color: mc('indigo', '700');
  18. font-weight: 500;
  19. }
  20. }
  21. .is-logo {
  22. text-align: center;
  23. padding: .5rem 0 1.5rem 0;
  24. border-bottom: 1px solid mc('blue', '50');
  25. margin-bottom: 1rem;
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. img {
  30. max-height: 64px;
  31. }
  32. h4 {
  33. font-size: 1.2rem;
  34. font-weight: 600;
  35. margin-left: 1.5rem;
  36. color: mc('grey', '700');
  37. }
  38. }
  39. i.icon-loader {
  40. display: inline-block;
  41. color: mc('blue', '500')
  42. }
  43. .progress-bar {
  44. width: 150px;
  45. height: 10px;
  46. background-color: mc('indigo', '50');
  47. border:1px solid mc('indigo', '100');
  48. border-radius: 3px;
  49. position: absolute;
  50. left: 15px;
  51. top: 21px;
  52. padding: 1px;
  53. > div {
  54. width: 5px;
  55. height: 6px;
  56. background-color: mc('indigo', '200');
  57. border-radius: 2px;
  58. transition: all 1s ease;
  59. }
  60. }
  61. footer {
  62. background-color: mc('blue','800');
  63. border-top: 1px solid mc('blue', '700');
  64. display: flex;
  65. justify-content: space-between;
  66. align-items: center;
  67. padding: 0 25px;
  68. height: 70px;
  69. font-size: 13px;
  70. font-weight: 500;
  71. color: mc('blue','200');
  72. position: absolute;
  73. right: 0;
  74. bottom: 0;
  75. left: 0;
  76. }
  77. }