Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

_prejoin.scss 3.7KB

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