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.

_premeeting-screens.scss 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. .premeeting-screen {
  2. background: #292929;
  3. bottom: 0;
  4. display: flex;
  5. font-size: 1.3em;
  6. left: 0;
  7. position: absolute;
  8. right: 0;
  9. top: 0;
  10. z-index: $toolbarZ + 2;
  11. .action-btn {
  12. border-radius: 6px;
  13. box-sizing: border-box;
  14. color: #fff;
  15. cursor: pointer;
  16. display: inline-block;
  17. font-size: 14px;
  18. font-weight: 600;
  19. line-height: 24px;
  20. margin-bottom: 16px;
  21. padding: 7px 16px;
  22. position: relative;
  23. text-align: center;
  24. width: 100%;
  25. &.primary {
  26. background: #0376DA;
  27. border: 1px solid #0376DA;
  28. }
  29. &.secondary {
  30. background: #3D3D3D;
  31. border: 1px solid transparent;
  32. }
  33. &.text {
  34. width: auto;
  35. font-size: 13px;
  36. margin: 0;
  37. padding: 0;
  38. }
  39. &.disabled {
  40. background: #5E6D7A;
  41. border: 1px solid #5E6D7A;
  42. color: #AFB6BC;
  43. cursor: initial;
  44. .icon {
  45. & > svg {
  46. fill: #AFB6BC;
  47. }
  48. }
  49. }
  50. .options {
  51. border-radius: 3px;
  52. align-items: center;
  53. display: flex;
  54. height: 100%;
  55. justify-content: center;
  56. position: absolute;
  57. right: 0;
  58. top: 0;
  59. width: 36px;
  60. &:hover {
  61. background-color: #0262B6;
  62. }
  63. svg {
  64. pointer-events: none;
  65. }
  66. }
  67. }
  68. .content {
  69. align-items: center;
  70. box-sizing: border-box;
  71. display: flex;
  72. flex-direction: column;
  73. flex-shrink: 0;
  74. height: 100%;
  75. margin: 0 30px;
  76. padding: 24px 0 16px;
  77. position: relative;
  78. width: $prejoinDefaultContentWidth;
  79. z-index: $toolbarZ + 2;
  80. &-controls {
  81. align-items: center;
  82. display: flex;
  83. flex-direction: column;
  84. margin: auto;
  85. width: 100%;
  86. .title {
  87. color: #fff;
  88. font-size: 28px;
  89. font-weight: 600;
  90. letter-spacing: -0.015;
  91. line-height: 36px;
  92. margin-bottom: 32px;
  93. text-align: center;
  94. }
  95. input.field {
  96. background-color: white;
  97. border: none;
  98. outline: none;
  99. border-radius: 6px;
  100. font-size: 14px;
  101. line-height: 20px;
  102. margin-bottom: 16px;
  103. color: #1C2025;
  104. padding: 10px 16px;
  105. text-align: center;
  106. width: 100%;
  107. &.error {
  108. border: 1px solid #E04757;
  109. }
  110. &.focused {
  111. box-shadow: 0px 0px 1px 1.5px black, 0px 0px 1.3px 4px white;
  112. }
  113. }
  114. #new-toolbox {
  115. bottom: 0;
  116. position: relative;
  117. transition: none;
  118. .toolbox-content {
  119. margin-bottom: 4px;
  120. }
  121. .toolbox-content-items {
  122. @include ltr;
  123. background: transparent;
  124. box-shadow: none;
  125. display: flex;
  126. justify-content: space-evenly;
  127. padding: 8px 0;
  128. }
  129. .toolbox-content,
  130. .toolbox-content-wrapper,
  131. .toolbox-content-items {
  132. box-sizing: border-box;
  133. width: 100%;
  134. }
  135. }
  136. }
  137. }
  138. @media (max-width: 720px) {
  139. flex-direction: column-reverse;
  140. .content {
  141. height: auto;
  142. margin: 0 auto;
  143. }
  144. }
  145. // mobile phone landscape
  146. @media (max-height: 420px) {
  147. div.content {
  148. padding: 16px 16px 0 16px;
  149. }
  150. }
  151. @media (max-width: 400px) {
  152. .content {
  153. padding: 16px;
  154. width: 100%;
  155. &-controls {
  156. input.field {
  157. font-size: 16px;
  158. padding: 14px 16px;
  159. }
  160. }
  161. .title {
  162. display: none;
  163. }
  164. }
  165. .device-status-error {
  166. border-radius: 0;
  167. margin: 0 -16px;
  168. }
  169. input.field {
  170. font-size: 16px;
  171. padding: 14px 16px;
  172. }
  173. .action-btn {
  174. font-size: 16px;
  175. margin-bottom: 8px;
  176. padding: 11px 16px;
  177. }
  178. }
  179. input::placeholder {
  180. color: #040404;
  181. }
  182. }
  183. #preview {
  184. background: #040404;
  185. display: flex;
  186. align-items: center;
  187. justify-content: center;
  188. height: 100%;
  189. width: 100%;
  190. .avatar {
  191. text {
  192. fill: white;
  193. }
  194. }
  195. video {
  196. height: 100%;
  197. object-fit: cover;
  198. width: 100%;
  199. }
  200. }
  201. @mixin flex-centered() {
  202. align-items: center;
  203. display: flex;
  204. justify-content: center;
  205. }