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.scss 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. .prejoin {
  2. &-full-page {
  3. background: #1C2025;
  4. position: absolute;
  5. width: 100%;
  6. height: 100%;
  7. z-index: $toolbarZ + 1;
  8. }
  9. &-input-area-container {
  10. position: absolute;
  11. bottom: 48px;
  12. width: 100%;
  13. z-index: 2;
  14. }
  15. &-input-area {
  16. margin: 0 auto;
  17. text-align: center;
  18. width: 320px;
  19. }
  20. &-title {
  21. color: #fff;
  22. font-size: 24px;
  23. line-height: 32px;
  24. margin-bottom: 16px;
  25. }
  26. &-btn {
  27. border-radius: 3px;
  28. color: #fff;
  29. cursor: pointer;
  30. display: inline-block;
  31. font-size: 15px;
  32. line-height: 24px;
  33. padding: 7px 16px;
  34. position: relative;
  35. text-align: center;
  36. width: 286px;
  37. &--primary {
  38. background: #0376DA;
  39. border: 1px solid #0376DA;
  40. }
  41. &--secondary {
  42. background: #2A3A4B;
  43. border: 1px solid #5E6D7A;
  44. }
  45. &--text {
  46. width: auto;
  47. font-size: 13px;
  48. margin: 0;
  49. padding: 0;
  50. }
  51. }
  52. &-btn-options {
  53. align-items: center;
  54. border-left: 1px solid #fff;
  55. display: flex;
  56. height: 100%;
  57. justify-content: center;
  58. position: absolute;
  59. right: 0;
  60. top: 0;
  61. width: 40px;
  62. }
  63. &-text-btns {
  64. display: flex;
  65. justify-content: space-between;
  66. }
  67. &-input-label {
  68. color: #A4B8D1;
  69. font-size: 13px;
  70. line-height: 20px;
  71. margin-top: 32px 0 8px 0;
  72. text-align: center;
  73. width: 100%;
  74. }
  75. &-checkbox {
  76. border: 0;
  77. height: 16px;
  78. margin-right: 8px;
  79. padding: 0;
  80. width: 16px;
  81. }
  82. &-checkbox-container {
  83. align-items: center;
  84. color: #fff;
  85. display: none;
  86. font-size: 13px;
  87. justify-content: center;
  88. line-height: 20px;
  89. margin-top: 16px;
  90. width: 100%;
  91. }
  92. }
  93. @mixin name-placeholder {
  94. color: #fff;
  95. font-weight: 300;
  96. opacity: 0.6;
  97. }
  98. .prejoin-preview {
  99. height: 100%;
  100. position: absolute;
  101. width: 100%;
  102. &--no-video {
  103. background: radial-gradient(50% 50% at 50% 50%, #5B6F80 0%, #365067 100%), #FFFFFF;
  104. text-align: center;
  105. }
  106. &-video {
  107. height: 100%;
  108. object-fit: cover;
  109. position: absolute;
  110. width: 100%;
  111. }
  112. &-name {
  113. color: #fff;
  114. font-size: 19px;
  115. line-height: 28px;
  116. &--editable {
  117. background: none;
  118. border: 0;
  119. border-bottom: 1px solid #D1DBE8;
  120. margin: 24px 0 16px 0;
  121. outline: none;
  122. text-align: center;
  123. width: 100%;
  124. &::-webkit-input-placeholder {
  125. @include name-placeholder;
  126. }
  127. &::-moz-placeholder {
  128. @include name-placeholder;
  129. }
  130. &:-ms-input-placeholder {
  131. @include name-placeholder;
  132. }
  133. }
  134. }
  135. &-avatar.avatar {
  136. background: #A4B8D1;
  137. margin: 200px auto 0 auto;
  138. }
  139. &-btn-container {
  140. display: flex;
  141. justify-content: center;
  142. margin-top: 32px;
  143. width: 100%;
  144. &> div {
  145. margin: 0 12px;
  146. }
  147. .settings-button-small-icon {
  148. right: -8px;
  149. &--hovered {
  150. right: -10px;
  151. }
  152. }
  153. }
  154. &-overlay {
  155. height: 100%;
  156. position: absolute;
  157. width: 100%;
  158. z-index: 1;
  159. background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  160. }
  161. &-bottom-overlay {
  162. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  163. bottom: 0;
  164. height: 50%;
  165. position: absolute;
  166. width: 100%;
  167. z-index: 1;
  168. }
  169. &-status {
  170. align-items: center;
  171. bottom: 0;
  172. color: #fff;
  173. display: flex;
  174. font-size: 13px;
  175. min-height: 24px;
  176. justify-content: center;
  177. position: absolute;
  178. text-align: center;
  179. width: 100%;
  180. z-index: 1;
  181. &--warning {
  182. background: rgba(241, 173, 51, 0.5)
  183. }
  184. &--ok {
  185. background: rgba(49, 183, 106, 0.5);
  186. }
  187. }
  188. &-icon {
  189. background-position: center;
  190. background-repeat: no-repeat;
  191. display: inline-block;
  192. height: 16px;
  193. margin-right: 8px;
  194. width: 16px;
  195. }
  196. &-error-desc {
  197. margin-right: 4px;
  198. }
  199. .settings-button-container {
  200. width: 49px;
  201. margin: 0 8px;
  202. }
  203. &-dropdown-btns {
  204. width: 320px;
  205. padding: 8px 0;
  206. }
  207. &-dropdown-btn {
  208. align-items: center;
  209. color: #1C2025;
  210. cursor: pointer;
  211. display: flex;
  212. height: 40px;
  213. font-size: 15px;
  214. line-height: 24px;
  215. padding: 0 16px;
  216. &:hover {
  217. background-color: #DAEBFA;
  218. }
  219. }
  220. &-dropdown-icon {
  221. display: inline-block;
  222. margin-right: 16px;
  223. & > svg {
  224. fill: #1C2025;
  225. }
  226. }
  227. &-dropdown-container {
  228. & > div > div:nth-child(2) > div > div {
  229. background: #fff;
  230. padding: 0;
  231. }
  232. }
  233. }
  234. .prejoin-copy {
  235. &-meeting {
  236. cursor: pointer;
  237. color: #fff;
  238. font-size: 15px;
  239. font-weight: 300;
  240. line-height: 24px;
  241. position: relative;
  242. }
  243. &-url {
  244. max-width: 278px;
  245. padding: 8px 10px;
  246. overflow: hidden;
  247. text-overflow: ellipsis;
  248. }
  249. &-badge {
  250. border-radius: 4px;
  251. height: 100%;
  252. line-height: 38px;
  253. position: absolute;
  254. padding-left: 10px;
  255. text-align: left;
  256. top: 0;
  257. width: 100%;
  258. &--hover {
  259. background: #1C2025;
  260. }
  261. &--done {
  262. background: #31B76A;
  263. }
  264. }
  265. &-icon {
  266. position: absolute;
  267. right: 8px;
  268. top: 8px;
  269. &--white {
  270. &> svg > path {
  271. fill: #fff
  272. }
  273. }
  274. &--light {
  275. &> svg > path {
  276. fill: #D1DBE8;
  277. }
  278. }
  279. }
  280. &-textarea {
  281. position: absolute;
  282. left: -9999px;
  283. }
  284. }