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.

_welcome_page.scss 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. body.welcome-page {
  2. background: inherit;
  3. overflow: auto;
  4. }
  5. .welcome {
  6. background-image: $welcomePageBackground;
  7. display: flex;
  8. flex-direction: column;
  9. font-family: $welcomePageFontFamily;
  10. justify-content: space-between;
  11. min-height: 100vh;
  12. position: relative;
  13. .header {
  14. background-image: $welcomePageHeaderBackground;
  15. background-position: $welcomePageHeaderBackgroundPosition;
  16. background-repeat: $welcomePageHeaderBackgroundRepeat;
  17. background-size: $welcomePageHeaderBackgroundSize;
  18. padding-bottom: $welcomePageHeaderPaddingBottom;
  19. align-items: center;
  20. display: flex;
  21. flex-direction: column;
  22. min-height: $welcomePageHeaderMinHeight;
  23. overflow: hidden;
  24. position: relative;
  25. text-align: center;
  26. .header-text {
  27. display: $welcomePageHeaderTextDisplay;
  28. flex-direction: column;
  29. margin-top: $watermarkHeight + $welcomePageHeaderTextMarginTop;
  30. margin-bottom: $welcomePageHeaderTextMarginBottom;
  31. max-width: calc(100% - 40px);
  32. width: $welcomePageHeaderTextWidth;
  33. z-index: $zindex2;
  34. }
  35. .header-text-title {
  36. color: $welcomePageTitleColor;
  37. font-size: $welcomePageHeaderTextTitleFontSize;
  38. font-weight: $welcomePageHeaderTextTitleFontWeight;
  39. line-height: $welcomePageHeaderTextTitleLineHeight;
  40. margin-bottom: $welcomePageHeaderTextTitleMarginBottom;
  41. opacity: $welcomePageHeaderTextTitleOpacity;
  42. }
  43. .header-text-description {
  44. display: $welcomePageHeaderTextDescriptionDisplay;
  45. color: $welcomePageDescriptionColor;
  46. font-size: $welcomePageHeaderTextDescriptionFontSize;
  47. font-weight: $welcomePageHeaderTextDescriptionFontWeight;
  48. line-height: $welcomePageHeaderTextDescriptionLineHeight;
  49. margin-bottom: $welcomePageHeaderTextDescriptionMarginBottom;
  50. align-self: $welcomePageHeaderTextDescriptionAlignSelf;
  51. }
  52. #enter_room {
  53. display: $welcomePageEnterRoomDisplay;
  54. align-items: center;
  55. max-width: calc(100% - 40px);
  56. width: $welcomePageEnterRoomWidth;
  57. z-index: $zindex2;
  58. background-color: #fff;
  59. padding: $welcomePageEnterRoomPadding;
  60. border-radius: $welcomePageEnterRoomBorderRadius;
  61. .enter-room-input-container {
  62. width: 100%;
  63. padding: $welcomePageEnterRoomInputContainerPadding;
  64. text-align: left;
  65. color: #253858;
  66. height: fit-content;
  67. .enter-room-title {
  68. display: $welcomePageEnterRoomTitleDisplay;
  69. font-size: 18px;
  70. font-weight: bold;
  71. padding-bottom: 5px;
  72. }
  73. .enter-room-input {
  74. border-width: $welcomePageEnterRoomInputContainerBorderWidth;
  75. border-style: $welcomePageEnterRoomInputContainerBorderStyle;
  76. border-image: $welcomePageEnterRoomInputContainerBorderImage;
  77. display: inline-block;
  78. width: 100%;
  79. font-size: 14px;
  80. }
  81. .insecure-room-name-warning {
  82. align-items: center;
  83. color: $defaultWarningColor;
  84. display: flex;
  85. flex-direction: row;
  86. margin-top: 5px;
  87. .jitsi-icon {
  88. margin-right: 15px;
  89. svg {
  90. fill: $defaultWarningColor
  91. }
  92. }
  93. }
  94. ::placeholder {
  95. color: #253858;
  96. }
  97. }
  98. }
  99. #moderated-meetings {
  100. max-width: calc(100% - 40px);
  101. padding: 16px 0 39px 0;
  102. width: $welcomePageEnterRoomWidth;
  103. p {
  104. color: $welcomePageDescriptionColor;
  105. text-align: left;
  106. a {
  107. color: inherit;
  108. font-weight: 600;
  109. }
  110. }
  111. }
  112. .tab-container {
  113. font-size: 16px;
  114. position: relative;
  115. text-align: left;
  116. min-height: 354px;
  117. width: 710px;
  118. background: #75A7E7;
  119. display: $welcomePageTabContainerDisplay;
  120. flex-direction: column;
  121. .tab-content{
  122. display: $welcomePageTabContentDisplay;
  123. margin: 5px 0px;
  124. overflow: hidden;
  125. flex-grow: 1;
  126. position: relative;
  127. > * {
  128. position: absolute;
  129. }
  130. }
  131. .tab-buttons {
  132. font-size: 18px;
  133. color: #FFFFFF;
  134. display: $welcomePageTabButtonsDisplay;
  135. flex-grow: 0;
  136. flex-direction: row;
  137. min-height: 54px;
  138. width: 100%;
  139. .tab {
  140. display: $welcomePageTabDisplay;
  141. text-align: center;
  142. background: rgba(9,30,66,0.37);
  143. height: 55px;
  144. line-height: 54px;
  145. flex-grow: 1;
  146. cursor: pointer;
  147. &.selected, &:hover {
  148. background: rgba(9,30,66,0.71);
  149. }
  150. &:last-child {
  151. margin-left: 1px;
  152. }
  153. }
  154. }
  155. }
  156. }
  157. .welcome-page-button {
  158. width: $welcomePageButtonWidth;
  159. min-width: $welcomePageButtonMinWidth;
  160. height: $welcomePageButtonHeight;
  161. font-size: $welcomePageButtonFontSize;
  162. font-weight: $welcomePageButtonFontWeight;
  163. background: #0074E0;
  164. border-radius: $welcomePageButtonBorderRadius;
  165. color: #FFFFFF;
  166. text-align: center;
  167. vertical-align: middle;
  168. line-height: $welcomePageButtonLineHeight;
  169. cursor: pointer;
  170. }
  171. .welcome-page-settings {
  172. color: $welcomePageDescriptionColor;
  173. position: absolute;
  174. top: 32px;
  175. right: 32px;
  176. z-index: $zindex2;
  177. * {
  178. cursor: pointer;
  179. font-size: 32px;
  180. }
  181. }
  182. .welcome-watermark {
  183. position: absolute;
  184. width: 100%;
  185. height: 100%;
  186. .watermark.leftwatermark {
  187. width: $welcomePageWatermarkWidth;
  188. height: $welcomePageWatermarkHeight;
  189. }
  190. }
  191. }