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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. border-width: $welcomePageEnterRoomInputContainerBorderWidth;
  68. border-style: $welcomePageEnterRoomInputContainerBorderStyle;
  69. border-image: $welcomePageEnterRoomInputContainerBorderImage;
  70. .enter-room-title {
  71. display: $welcomePageEnterRoomTitleDisplay;
  72. font-size: 18px;
  73. font-weight: bold;
  74. padding-bottom: 5px;
  75. }
  76. .enter-room-input {
  77. border: none;
  78. display: inline-block;
  79. width: 100%;
  80. font-size: 14px;
  81. }
  82. ::placeholder {
  83. color: #253858;
  84. }
  85. }
  86. }
  87. .tab-container {
  88. font-size: 16px;
  89. position: relative;
  90. text-align: left;
  91. min-height: 354px;
  92. width: 710px;
  93. background: #75A7E7;
  94. display: $welcomePageTabContainerDisplay;
  95. flex-direction: column;
  96. .tab-content{
  97. display: $welcomePageTabContentDisplay;
  98. margin: 5px 0px;
  99. overflow: hidden;
  100. flex-grow: 1;
  101. position: relative;
  102. > * {
  103. position: absolute;
  104. }
  105. }
  106. .tab-buttons {
  107. font-size: 18px;
  108. color: #FFFFFF;
  109. display: $welcomePageTabButtonsDisplay;
  110. flex-grow: 0;
  111. flex-direction: row;
  112. min-height: 54px;
  113. width: 100%;
  114. .tab {
  115. display: $welcomePageTabDisplay;
  116. text-align: center;
  117. background: rgba(9,30,66,0.37);
  118. height: 55px;
  119. line-height: 54px;
  120. flex-grow: 1;
  121. cursor: pointer;
  122. &.selected, &:hover {
  123. background: rgba(9,30,66,0.71);
  124. }
  125. &:last-child {
  126. margin-left: 1px;
  127. }
  128. }
  129. }
  130. }
  131. }
  132. .welcome-page-button {
  133. width: $welcomePageButtonWidth;
  134. min-width: $welcomePageButtonMinWidth;
  135. height: $welcomePageButtonHeight;
  136. font-size: $welcomePageButtonFontSize;
  137. font-weight: $welcomePageButtonFontWeight;
  138. background: #0074E0;
  139. border-radius: $welcomePageButtonBorderRadius;
  140. color: #FFFFFF;
  141. text-align: center;
  142. vertical-align: middle;
  143. line-height: $welcomePageButtonLineHeight;
  144. cursor: pointer;
  145. }
  146. .welcome-page-settings {
  147. color: $welcomePageDescriptionColor;
  148. position: absolute;
  149. top: 32px;
  150. right: 32px;
  151. z-index: $zindex2;
  152. * {
  153. cursor: pointer;
  154. font-size: 32px;
  155. }
  156. }
  157. .welcome-watermark {
  158. position: absolute;
  159. width: 100%;
  160. height: 100%;
  161. }
  162. }