Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. .lobby-screen {
  2. font-size: 16px;
  3. font-weight: 400;
  4. line-height: 26px;
  5. &-content {
  6. align-items: center;
  7. display: flex;
  8. flex-direction: column;
  9. .spinner {
  10. margin: 8px;
  11. }
  12. .lobby-chat-container {
  13. background-color: $chatBackgroundColor;
  14. width: 100%;
  15. height: 314px;
  16. display: flex;
  17. flex-direction: column;
  18. align-items: stretch;
  19. margin-bottom: 16px;
  20. border-radius: 5px;
  21. .lobby-chat-header {
  22. display: none;
  23. }
  24. }
  25. .joining-message {
  26. color: white;
  27. margin: 24px auto;
  28. text-align: center;
  29. }
  30. .open-chat-button {
  31. display: none;
  32. }
  33. }
  34. }
  35. #lobby-section {
  36. display: flex;
  37. flex-direction: column;
  38. .description {
  39. font-size: 13px;
  40. }
  41. .control-row {
  42. display: flex;
  43. flex-direction: row;
  44. justify-content: space-between;
  45. margin-top: 15px;
  46. label {
  47. font-size: 14px;
  48. font-weight: bold;
  49. }
  50. }
  51. }
  52. #notification-participant-list {
  53. background-color: $newToolbarBackgroundColor;
  54. border: 1px solid rgba(255, 255, 255, .4);
  55. border-radius: 8px;
  56. left: 0;
  57. margin: 20px;
  58. max-height: 600px;
  59. overflow: hidden;
  60. overflow-y: auto;
  61. position: fixed;
  62. top: 30px;
  63. z-index: $toolbarZ + 1;
  64. &:empty {
  65. border: none;
  66. }
  67. &.toolbox-visible {
  68. // Same as toolbox subject position
  69. top: 120px;
  70. }
  71. &.avoid-chat {
  72. left: 315px;
  73. }
  74. .title {
  75. background-color: rgba(0, 0, 0, .2);
  76. font-size: 1.2em;
  77. padding: 15px
  78. }
  79. button {
  80. align-self: stretch;
  81. margin-bottom: 8px 0;
  82. padding: 12px;
  83. transition: .2s transform ease;
  84. &:disabled {
  85. opacity: .5;
  86. }
  87. &:hover {
  88. transform: scale(1.05);
  89. &:disabled {
  90. transform: none;
  91. }
  92. }
  93. &.borderLess {
  94. background-color: transparent;
  95. border-width: 0;
  96. }
  97. &.primary {
  98. background-color: rgb(3, 118, 218);
  99. border-width: 0;
  100. }
  101. }
  102. }
  103. .knocking-participants-container {
  104. list-style-type: none;
  105. padding: 0 15px 15px 15px;
  106. }
  107. .knocking-participant {
  108. align-items: center;
  109. display: flex;
  110. flex-direction: row;
  111. margin: 8px 0;
  112. .details {
  113. display: flex;
  114. flex: 1;
  115. flex-direction: column;
  116. justify-content: space-evenly;
  117. margin: 0 30px 0 10px;
  118. }
  119. button {
  120. align-self: unset;
  121. margin: 0 5px;
  122. }
  123. }
  124. @media (max-width: 300px) {
  125. #knocking-participant-list {
  126. margin: 0;
  127. text-align: center;
  128. width: 100%;
  129. .avatar {
  130. display: none;
  131. }
  132. }
  133. .knocking-participant {
  134. flex-direction: column;
  135. .details {
  136. margin: 0;
  137. }
  138. }
  139. }
  140. @media (max-width: 1000px) {
  141. .lobby-screen-content {
  142. .lobby-chat-container {
  143. position: fixed;
  144. top: 0;
  145. left: 0;
  146. width: 100%;
  147. height: 100%;
  148. z-index: 255;
  149. &.hidden {
  150. display: none;
  151. }
  152. .lobby-chat-header {
  153. display: flex;
  154. flex-direction: row;
  155. padding-top: 20px;
  156. padding-left: 16px;
  157. padding-right: 16px;
  158. .title {
  159. flex: 1;
  160. color: #fff;
  161. font-size: 20px;
  162. font-weight: 600;
  163. line-height: 28px;
  164. letter-spacing: -1.2%;
  165. }
  166. }
  167. }
  168. .open-chat-button {
  169. display: block;
  170. }
  171. }
  172. }