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

_welcome_page.scss 8.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. body.welcome-page {
  2. background: inherit;
  3. overflow: auto;
  4. }
  5. .welcome {
  6. background-image: $welcomePageBackground;
  7. background-color: #fff;
  8. display: flex;
  9. flex-direction: column;
  10. font-family: $welcomePageFontFamily;
  11. justify-content: space-between;
  12. min-height: 100dvh;
  13. position: relative;
  14. .header {
  15. background-image: $welcomePageHeaderBackground;
  16. background-position: $welcomePageHeaderBackgroundPosition;
  17. background-repeat: $welcomePageHeaderBackgroundRepeat;
  18. background-size: $welcomePageHeaderBackgroundSize;
  19. padding-bottom: $welcomePageHeaderPaddingBottom;
  20. background-color: #131519;
  21. overflow: hidden;
  22. position: relative;
  23. .header-container {
  24. display: $welcomePageHeaderContainerDisplay;
  25. flex-direction: column;
  26. margin: $welcomePageHeaderContainerMargin;
  27. z-index: $zindex2;
  28. align-items: center;
  29. position: relative;
  30. max-width: 688px;
  31. }
  32. .header-watermark-container {
  33. position: absolute;
  34. width: 100%;
  35. height: 100%;
  36. margin-top: calc(20px - #{$welcomePageHeaderContainerMarginTop});
  37. }
  38. .header-text-title {
  39. color: $welcomePageTitleColor;
  40. font-size: $welcomePageHeaderTextTitleFontSize;
  41. font-weight: $welcomePageHeaderTextTitleFontWeight;
  42. line-height: $welcomePageHeaderTextTitleLineHeight;
  43. margin-bottom: $welcomePageHeaderTextTitleMarginBottom;
  44. max-width: $welcomePageHeaderTitleMaxWidth;
  45. opacity: $welcomePageHeaderTextTitleOpacity;
  46. text-align: $welcomePageHeaderTextAlign;
  47. }
  48. .header-text-subtitle {
  49. color: #fff;
  50. font-size: 20px;
  51. font-weight: 600;
  52. line-height: 26px;
  53. margin: 16px 0 32px 0;
  54. text-align: $welcomePageHeaderTextAlign;
  55. }
  56. .not-allow-title-character-div {
  57. color: #f03e3e;
  58. background-color: #fff;
  59. font-size: 12px;
  60. font-weight: 600;
  61. margin: 10px 0px 5px 0px;
  62. text-align: $welcomePageHeaderTextAlign;
  63. border-radius: 5px;
  64. padding: 5px;
  65. .not-allow-title-character-text {
  66. float: right;
  67. line-height: 1.9;
  68. };
  69. .jitsi-icon {
  70. margin-right: 9px;
  71. float: left;
  72. svg {
  73. fill:#f03e3e;
  74. & > *:first-child {
  75. fill: none !important;
  76. }
  77. }
  78. }
  79. }
  80. .insecure-room-name-warning {
  81. align-items: center;
  82. color: rgb(215, 121, 118);
  83. font-weight: 600;
  84. display: flex;
  85. flex-direction: row;
  86. margin-top: 15px;
  87. max-width: 480px;
  88. width: $welcomePageEnterRoomWidth;
  89. .jitsi-icon {
  90. margin-right: 15px;
  91. svg {
  92. fill: rgb(215, 121, 118);
  93. & > *:first-child {
  94. fill: none !important;
  95. }
  96. }
  97. }
  98. }
  99. ::placeholder {
  100. color: #253858;
  101. }
  102. #enter_room {
  103. display: $welcomePageEnterRoomDisplay;
  104. align-items: center;
  105. max-width: 480px;
  106. width: $welcomePageEnterRoomWidth;
  107. z-index: $zindex2;
  108. height: fit-content;
  109. .join-meeting-container {
  110. margin: $welcomePageEnterRoomMargin;
  111. padding: $welcomePageEnterRoomPadding;
  112. border-radius: 4px;
  113. background-color: #fff;
  114. display: flex;
  115. width: 100%;
  116. text-align: left;
  117. color: #253858;
  118. }
  119. .enter-room-input-container {
  120. flex-grow: 1;
  121. padding-right: 4px;
  122. .enter-room-input {
  123. border-radius: 4px;
  124. border: 0;
  125. background: #fff;
  126. display: inline-block;
  127. height: 50px;
  128. width: 100%;
  129. font-size: 14px;
  130. padding-left: 10px;
  131. &.focus-visible {
  132. outline: auto 2px #005fcc;
  133. }
  134. }
  135. }
  136. }
  137. #moderated-meetings {
  138. max-width: calc(100% - 40px);
  139. padding: 16px 0 0;
  140. width: $welcomePageEnterRoomWidth;
  141. text-align: center;
  142. a {
  143. color: inherit;
  144. font-weight: 600;
  145. }
  146. }
  147. }
  148. .tab-container {
  149. font-size: 16px;
  150. position: relative;
  151. text-align: left;
  152. display: $welcomePageTabContainerDisplay;
  153. flex-direction: column;
  154. .tab-content{
  155. display: $welcomePageTabContentDisplay;
  156. height: 250px;
  157. margin: 5px 0px;
  158. overflow: hidden;
  159. flex-grow: 1;
  160. position: relative;
  161. }
  162. .tab-buttons {
  163. background-color: #c7ddff;
  164. border-radius: 6px;
  165. color: #0163FF;
  166. font-size: 14px;
  167. line-height: 18px;
  168. margin: 4px;
  169. display: $welcomePageTabButtonsDisplay;
  170. [role="tab"] {
  171. background-color: #c7ddff;
  172. border-radius: 7px;
  173. cursor: pointer;
  174. display: $welcomePageTabDisplay;
  175. flex-grow: 1;
  176. margin: 2px;
  177. padding: 7px 0;
  178. text-align: center;
  179. color: inherit;
  180. border: 0;
  181. &[aria-selected="true"] {
  182. background-color: #FFF;
  183. }
  184. }
  185. }
  186. }
  187. .welcome-page-button {
  188. border: 0;
  189. font-size: 14px;
  190. background: #0074E0;
  191. border-radius: 3px;
  192. color: #FFFFFF;
  193. cursor: pointer;
  194. padding: 16px 20px;
  195. &:focus-within {
  196. outline: auto 2px #022e61;
  197. }
  198. }
  199. .welcome-page-settings {
  200. background: rgba(255, 255, 255, 0.38);
  201. border-radius: 3px;
  202. color: $welcomePageDescriptionColor;
  203. padding: 4px;
  204. position: absolute;
  205. top: calc(35px - #{$welcomePageHeaderContainerMarginTop});
  206. right: 0;
  207. z-index: $zindex2;
  208. * {
  209. cursor: pointer;
  210. font-size: 32px;
  211. }
  212. .toolbox-icon {
  213. height: 24px;
  214. width: 24px;
  215. }
  216. }
  217. .welcome-watermark {
  218. position: absolute;
  219. width: 100%;
  220. height: 100%;
  221. .watermark.leftwatermark {
  222. width: $welcomePageWatermarkWidth;
  223. height: $welcomePageWatermarkHeight;
  224. }
  225. }
  226. &.without-content {
  227. .welcome-card {
  228. min-width: 500px;
  229. max-width: 580px;
  230. }
  231. }
  232. &.without-footer {
  233. justify-content: start;
  234. }
  235. .welcome-cards-container {
  236. color:#131519;
  237. padding-top: 40px;
  238. }
  239. .welcome-card-column {
  240. display: flex;
  241. justify-content: center;
  242. flex-direction: column;
  243. align-items: center;
  244. max-width: 688px;
  245. margin: auto;
  246. > div {
  247. margin-bottom: 16px;
  248. }
  249. }
  250. .welcome-card-text {
  251. padding: 32px;
  252. }
  253. .welcome-card {
  254. width: 100%;
  255. border-radius: 8px;
  256. &--dark {
  257. background: #444447;
  258. color: #fff;
  259. }
  260. &--blue {
  261. background: #D5E5FF;
  262. }
  263. &--grey {
  264. background: #F2F3F4;
  265. }
  266. }
  267. .welcome-footer {
  268. background: #131519;
  269. color: #fff;
  270. margin-top: 40px;
  271. position: relative;
  272. }
  273. .welcome-footer-centered {
  274. max-width: 688px;
  275. margin: 0 auto;
  276. }
  277. .welcome-footer-padded {
  278. padding: 0px 16px;
  279. }
  280. .welcome-footer-row-block {
  281. display: flex;
  282. justify-content: space-between;
  283. align-items: center;
  284. border-bottom: 1px solid #424447;
  285. &:last-child {
  286. border-bottom: none;
  287. }
  288. }
  289. .welcome-footer--row-1 {
  290. padding: 40px 0 24px 0;
  291. }
  292. .welcome-footer-row-1-text {
  293. max-width: 200px;
  294. margin-right: 16px;
  295. }
  296. }