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 7.5KB

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