Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_prejoin.scss 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. .prejoin {
  2. &-input-area {
  3. margin: 0 auto;
  4. text-align: center;
  5. width: 320px;
  6. }
  7. &-title {
  8. color: #fff;
  9. font-size: 24px;
  10. line-height: 32px;
  11. margin-bottom: 16px;
  12. }
  13. &-text-btns {
  14. display: flex;
  15. justify-content: space-between;
  16. }
  17. &-input-label {
  18. color: #A4B8D1;
  19. font-size: 13px;
  20. line-height: 20px;
  21. margin-top: 32px 0 8px 0;
  22. text-align: center;
  23. width: 100%;
  24. }
  25. &-checkbox {
  26. border: 0;
  27. height: 16px;
  28. margin-right: 8px;
  29. padding: 0;
  30. width: 16px;
  31. }
  32. &-checkbox-container {
  33. align-items: center;
  34. color: #fff;
  35. display: none;
  36. font-size: 13px;
  37. justify-content: center;
  38. line-height: 20px;
  39. margin-top: 16px;
  40. width: 100%;
  41. }
  42. }
  43. @mixin name-placeholder {
  44. color: #fff;
  45. font-weight: 300;
  46. opacity: 0.6;
  47. }
  48. .prejoin-preview {
  49. height: 100%;
  50. position: absolute;
  51. width: 100%;
  52. &--no-video {
  53. background: radial-gradient(50% 50% at 50% 50%, #5B6F80 0%, #365067 100%), #FFFFFF;
  54. text-align: center;
  55. }
  56. &-video {
  57. height: 100%;
  58. object-fit: cover;
  59. position: absolute;
  60. width: 100%;
  61. }
  62. &-name {
  63. color: #fff;
  64. font-size: 19px;
  65. line-height: 28px;
  66. &--editable {
  67. background: none;
  68. border: 0;
  69. border-bottom: 1px solid #D1DBE8;
  70. margin: 24px 0 16px 0;
  71. outline: none;
  72. text-align: center;
  73. width: 100%;
  74. &::-webkit-input-placeholder {
  75. @include name-placeholder;
  76. }
  77. &::-moz-placeholder {
  78. @include name-placeholder;
  79. }
  80. &:-ms-input-placeholder {
  81. @include name-placeholder;
  82. }
  83. }
  84. &--text {
  85. margin: 16px 0;
  86. outline: none;
  87. }
  88. }
  89. &-avatar.avatar {
  90. background: #A4B8D1;
  91. margin: 200px auto 0 auto;
  92. }
  93. &-overlay {
  94. height: 100%;
  95. position: absolute;
  96. width: 100%;
  97. z-index: 1;
  98. background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  99. }
  100. &-bottom-overlay {
  101. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  102. bottom: 0;
  103. height: 50%;
  104. position: absolute;
  105. width: 100%;
  106. z-index: 1;
  107. }
  108. &-status {
  109. align-items: center;
  110. align-self: stretch;
  111. color: #fff;
  112. display: flex;
  113. font-size: 13px;
  114. min-height: 24px;
  115. justify-content: center;
  116. text-align: center;
  117. z-index: 1;
  118. &--warning {
  119. background: rgba(241, 173, 51, 0.7)
  120. }
  121. &--ok {
  122. background: rgba(49, 183, 106, 0.7);
  123. }
  124. }
  125. &-icon {
  126. background-position: center;
  127. background-repeat: no-repeat;
  128. display: inline-block;
  129. height: 16px;
  130. margin-right: 8px;
  131. width: 16px;
  132. }
  133. &-error-desc {
  134. margin-right: 4px;
  135. }
  136. .settings-button-container {
  137. width: 49px;
  138. margin: 0 8px;
  139. }
  140. &-dropdown-btns {
  141. width: 320px;
  142. padding: 8px 0;
  143. }
  144. &-dropdown-btn {
  145. align-items: center;
  146. color: #1C2025;
  147. cursor: pointer;
  148. display: flex;
  149. height: 40px;
  150. font-size: 15px;
  151. line-height: 24px;
  152. padding: 0 16px;
  153. &:hover {
  154. background-color: #DAEBFA;
  155. }
  156. }
  157. &-dropdown-icon {
  158. display: inline-block;
  159. margin-right: 16px;
  160. & > svg {
  161. fill: #1C2025;
  162. }
  163. }
  164. &-dropdown-container {
  165. & > div > div:nth-child(2) > div > div {
  166. background: #fff;
  167. padding: 0;
  168. }
  169. }
  170. }