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

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