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.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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: fit-content;
  23. overflow: hidden;
  24. position: relative;
  25. text-align: center;
  26. .header-text {
  27. display: flex;
  28. flex-direction: column;
  29. margin-top: $watermarkHeight + $welcomePageHeaderTextMarginTop;
  30. margin-bottom: $welcomePageHeaderTextMarginBottom;
  31. max-width: calc(100% - 40px);
  32. width: 650px;
  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: flex;
  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. svg {
  88. fill: $defaultWarningColor
  89. }
  90. }
  91. ::placeholder {
  92. color: #253858;
  93. }
  94. }
  95. }
  96. .tab-container {
  97. font-size: 16px;
  98. position: relative;
  99. text-align: left;
  100. min-height: 354px;
  101. width: 710px;
  102. background: #75A7E7;
  103. display: $welcomePageTabContainerDisplay;
  104. flex-direction: column;
  105. .tab-content{
  106. display: $welcomePageTabContentDisplay;
  107. margin: 5px 0px;
  108. overflow: hidden;
  109. flex-grow: 1;
  110. position: relative;
  111. > * {
  112. position: absolute;
  113. }
  114. }
  115. .tab-buttons {
  116. font-size: 18px;
  117. color: #FFFFFF;
  118. display: $welcomePageTabButtonsDisplay;
  119. flex-grow: 0;
  120. flex-direction: row;
  121. min-height: 54px;
  122. width: 100%;
  123. .tab {
  124. display: $welcomePageTabDisplay;
  125. text-align: center;
  126. background: rgba(9,30,66,0.37);
  127. height: 55px;
  128. line-height: 54px;
  129. flex-grow: 1;
  130. cursor: pointer;
  131. &.selected, &:hover {
  132. background: rgba(9,30,66,0.71);
  133. }
  134. &:last-child {
  135. margin-left: 1px;
  136. }
  137. }
  138. }
  139. }
  140. }
  141. .welcome-page-button {
  142. width: $welcomePageButtonWidth;
  143. min-width: $welcomePageButtonMinWidth;
  144. height: $welcomePageButtonHeight;
  145. font-size: $welcomePageButtonFontSize;
  146. font-weight: $welcomePageButtonFontWeight;
  147. background: #0074E0;
  148. border-radius: $welcomePageButtonBorderRadius;
  149. color: #FFFFFF;
  150. text-align: center;
  151. vertical-align: middle;
  152. line-height: $welcomePageButtonLineHeight;
  153. cursor: pointer;
  154. }
  155. .welcome-page-settings {
  156. color: $welcomePageDescriptionColor;
  157. position: absolute;
  158. top: 32px;
  159. right: 32px;
  160. z-index: $zindex2;
  161. * {
  162. cursor: pointer;
  163. font-size: 32px;
  164. }
  165. }
  166. .welcome-watermark {
  167. position: absolute;
  168. width: 100%;
  169. height: 100%;
  170. }
  171. }