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.

_prejoin-dialog.scss 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. .prejoin-dialog {
  2. background: #1C2025;
  3. box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.5);
  4. border-radius: 5px;
  5. color: #fff;
  6. height: 400px;
  7. width: 375px;
  8. &--small {
  9. height: 300;
  10. width: 400;
  11. }
  12. &-label {
  13. font-size: 15px;
  14. line-height: 24px;
  15. &-num {
  16. background: #2b3b4b;
  17. border: 1px solid #A4B8D1;
  18. border-radius: 50%;
  19. color: #fff;
  20. display: inline-block;
  21. height: 24px;
  22. margin-right: 8px;
  23. width: 24px;
  24. }
  25. }
  26. &-container {
  27. align-items: center;
  28. background: rgba(0,0,0,0.6);
  29. display: flex;
  30. height: 100vh;
  31. justify-content: center;
  32. left: 0;
  33. position: absolute;
  34. top: 0;
  35. width: 100vw;
  36. z-index: 3;
  37. }
  38. &-flag {
  39. display: inline-block;
  40. margin-right: 8px;
  41. transform: scale(1.2);
  42. }
  43. &-title {
  44. display: inline-block;
  45. font-size: 24px;
  46. line-height: 32px;
  47. }
  48. &-icon {
  49. cursor: pointer;
  50. > svg {
  51. fill: #A4B8D1;
  52. }
  53. }
  54. &-btn {
  55. width: 309px;
  56. }
  57. &-dialin-container {
  58. text-align: center;
  59. }
  60. &-delimiter {
  61. background: #5f6266;
  62. border: 0;
  63. height: 1px;
  64. margin: 0;
  65. padding: 0;
  66. width: 100%;
  67. &-container {
  68. margin: 16px 0 24px 0;
  69. position: relative;
  70. }
  71. &-txt-container {
  72. position: absolute;
  73. text-align: center;
  74. top: -8px;
  75. width: 100%;
  76. }
  77. &-txt {
  78. background: #1C2025;
  79. color: #5f6266;
  80. font-size: 11px;
  81. text-transform: uppercase;
  82. padding: 0 8px;
  83. }
  84. }
  85. }
  86. .prejoin-dialog-callout {
  87. padding: 16px;
  88. &-header {
  89. display: flex;
  90. justify-content: space-between;
  91. margin-bottom: 24px;
  92. }
  93. &-picker {
  94. margin: 8px 0 16px 0;
  95. }
  96. }
  97. .prejoin-dialog-dialin {
  98. text-align: center;
  99. &-header {
  100. align-items: center;
  101. margin: 16px 0 32px 16px;
  102. display: flex;
  103. }
  104. &-icon {
  105. margin-right: 16px;
  106. }
  107. &-num {
  108. background: #3e474f;
  109. border-radius: 4px;
  110. display: inline-block;
  111. font-size: 15px;
  112. line-height: 24px;
  113. margin: 4px;
  114. padding: 8px;
  115. &-container {
  116. min-height: 48px;
  117. margin: 8px 0;
  118. }
  119. }
  120. &-link {
  121. color: #6FB1EA;
  122. cursor: pointer;
  123. display: inline-block;
  124. font-size: 13px;
  125. line-height: 20px;
  126. margin-bottom: 24px;
  127. }
  128. &-spaced-label {
  129. margin-bottom: 16px;
  130. margin-top: 28px;
  131. }
  132. &-btns {
  133. &> div {
  134. margin-bottom: 16px;
  135. }
  136. }
  137. }
  138. .prejoin-dialog-calling {
  139. padding: 16px;
  140. text-align: center;
  141. &-header {
  142. text-align: right;
  143. }
  144. &-label {
  145. font-size: 15px;
  146. margin: 8px 0 16px 0;
  147. }
  148. &-number {
  149. font-size: 19px;
  150. line-height: 28px;
  151. margin: 16px 0;
  152. }
  153. }