_welcome.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. #welcome {
  2. padding: 16px 32px;
  3. line-height: 1.4em;
  4. .state {
  5. margin-top: 1em;
  6. &.error {
  7. color: $status-error;
  8. }
  9. }
  10. h2 {
  11. display: block;
  12. margin-bottom: 20px;
  13. }
  14. &, input {
  15. text-align: center;
  16. }
  17. md-input-container {
  18. margin-left: 32px;
  19. margin-right: 32px;
  20. }
  21. .scan {
  22. .password-entry {
  23. margin-top: 16px;
  24. }
  25. .instructions {
  26. margin-bottom: 16px;
  27. }
  28. md-input-container {
  29. margin-top: 12px;
  30. margin-bottom: 0;
  31. }
  32. qrcode {
  33. canvas {
  34. max-width: 100%;
  35. }
  36. }
  37. }
  38. .unlock {
  39. padding-top: 16px;
  40. .password-entry {
  41. margin-top: 32px;
  42. margin-bottom: 48px;
  43. }
  44. md-input-container {
  45. margin-top: 24px;
  46. margin-bottom: 8px;
  47. }
  48. button {
  49. margin-top: 0;
  50. margin-left: 0;
  51. margin-bottom: 32px;
  52. }
  53. }
  54. .manual-start {
  55. .illustration {
  56. margin-top: 24px;
  57. margin-bottom: 24px;
  58. }
  59. ol {
  60. width: 90%;
  61. margin: 16px auto 0;
  62. list-style-position: inside;
  63. li {
  64. margin-bottom: 4px;
  65. }
  66. }
  67. }
  68. .already-connected {
  69. .illustration {
  70. margin-top: 16px;
  71. margin-bottom: 28px;
  72. margin-left: 12px;
  73. }
  74. }
  75. .loading {
  76. margin-top: 48px;
  77. md-progress-circular {
  78. margin: 0 auto;
  79. svg path {
  80. stroke-width: 12px !important;
  81. }
  82. }
  83. .info {
  84. height: 250px;
  85. position: relative;
  86. top: -250px;
  87. display: flex;
  88. flex-direction: column;
  89. justify-content: center;
  90. .percentage {
  91. font-size: 4em;
  92. margin-bottom: 8px;
  93. line-height: 1em;
  94. font-weight: 300;
  95. vertical-align: center;
  96. }
  97. }
  98. .protocol-updated {
  99. font-size: 0.9em;
  100. background-color: $status-error;
  101. color: white;
  102. font-weight: bold;
  103. position: absolute;
  104. bottom: 148px;
  105. padding: 8px 8px;
  106. width: calc(100% - 16px);
  107. a {
  108. color: #9dd0f2;
  109. }
  110. }
  111. .troubleshoot {
  112. $troubleshoot-height: 190px;
  113. height: $troubleshoot-height;
  114. width: 100%;
  115. position: absolute;
  116. bottom: -$troubleshoot-height - 32px;
  117. h3 {
  118. margin-bottom: 8px;
  119. height: 44px;
  120. }
  121. ul {
  122. list-style-type: none;
  123. }
  124. .forget {
  125. margin-top: 8px;
  126. }
  127. }
  128. }
  129. }