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.

_premeeting-screens.scss 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /**
  2. * Shared style for full screen local track based dialogs/modals.
  3. */
  4. .premeeting-screen {
  5. align-items: stretch;
  6. background: #1C2025;
  7. bottom: 0;
  8. display: flex;
  9. flex-direction: column;
  10. font-size: 1.3em;
  11. left: 0;
  12. position: absolute;
  13. right: 0;
  14. top: 0;
  15. z-index: $toolbarZ + 1;
  16. .content {
  17. align-items: center;
  18. background-image: linear-gradient(transparent, black);
  19. display: flex;
  20. flex: 1;
  21. flex-direction: column;
  22. justify-content: flex-end;
  23. z-index: $toolbarZ + 2;
  24. .title {
  25. color: #fff;
  26. font-size: 24px;
  27. line-height: 32px;
  28. margin-bottom: 16px;
  29. }
  30. .copy-meeting {
  31. align-items: center;
  32. cursor: pointer;
  33. color: #fff;
  34. display: flex;
  35. flex-direction: row;
  36. font-size: 15px;
  37. font-weight: 300;
  38. justify-content: center;
  39. line-height: 24px;
  40. .url {
  41. display: flex;
  42. padding: 8px 10px;
  43. &:hover {
  44. background: #1C2025;
  45. border-radius: 4px;
  46. }
  47. &.done {
  48. background: #31B76A;
  49. }
  50. .jitsi-icon {
  51. margin-left: 10px;
  52. }
  53. }
  54. &:hover {
  55. align-self: stretch;
  56. }
  57. textarea {
  58. border-width: 0;
  59. height: 0;
  60. opacity: 0;
  61. padding: 0;
  62. width: 0;
  63. }
  64. }
  65. input.field {
  66. background-color: transparent;
  67. border: 1px solid transparent;
  68. color: white;
  69. outline-width: 0;
  70. padding: 20px;
  71. text-align: center;
  72. &.focused {
  73. border-bottom: 1px solid white;
  74. }
  75. &.error::placeholder {
  76. color: $defaultWarningColor;
  77. }
  78. }
  79. .action-btn {
  80. border-radius: 3px;
  81. color: #fff;
  82. cursor: pointer;
  83. display: inline-block;
  84. font-size: 15px;
  85. line-height: 24px;
  86. margin: 10px;
  87. padding: 7px 16px;
  88. position: relative;
  89. text-align: center;
  90. width: 286px;
  91. &.primary {
  92. background: #0376DA;
  93. border: 1px solid #0376DA;
  94. }
  95. &.secondary {
  96. background: transparent;
  97. border: 1px solid #5E6D7A;
  98. }
  99. &.text {
  100. width: auto;
  101. font-size: 13px;
  102. margin: 0;
  103. padding: 0;
  104. }
  105. &.disabled {
  106. background: #5E6D7A;
  107. border: 1px solid #5E6D7A;
  108. color: #AFB6BC;
  109. cursor: initial;
  110. .icon {
  111. & > svg {
  112. fill: #AFB6BC;
  113. }
  114. }
  115. .options {
  116. border-left: 1px solid #AFB6BC;
  117. }
  118. }
  119. .options {
  120. align-items: center;
  121. border-left: 1px solid #fff;
  122. display: flex;
  123. height: 100%;
  124. justify-content: center;
  125. position: absolute;
  126. right: 0;
  127. top: 0;
  128. width: 40px;
  129. }
  130. }
  131. }
  132. .media-btn-container {
  133. display: flex;
  134. justify-content: center;
  135. margin: 32px 0;
  136. width: 100%;
  137. &> div {
  138. margin: 0 12px;
  139. }
  140. .settings-button-small-icon {
  141. right: -8px;
  142. &--hovered {
  143. right: -10px;
  144. }
  145. }
  146. }
  147. }
  148. #preview {
  149. height: 100%;
  150. position: absolute;
  151. width: 100%;
  152. &.no-video {
  153. background: radial-gradient(50% 50% at 50% 50%, #5B6F80 0%, #365067 100%), #FFFFFF;
  154. text-align: center;
  155. }
  156. .avatar {
  157. background: #A4B8D1;
  158. margin: 200px auto 0 auto;
  159. }
  160. video {
  161. height: 100%;
  162. object-fit: cover;
  163. position: absolute;
  164. width: 100%;
  165. }
  166. }