Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_welcome_page.scss 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. body.welcome-page {
  2. background: inherit;
  3. overflow: auto;
  4. }
  5. .welcome {
  6. background-image: $welcomePageHeaderBackground;
  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. align-items: center;
  15. display: flex;
  16. flex-direction: column;
  17. min-height: fit-content;
  18. overflow: hidden;
  19. position: relative;
  20. text-align: center;
  21. .header-text {
  22. display: flex;
  23. flex-direction: column;
  24. margin-top: $watermarkHeight + 35;
  25. margin-bottom: 35px;
  26. max-width: calc(100% - 40px);
  27. width: 650px;
  28. z-index: $zindex2;
  29. }
  30. .header-text-title {
  31. color: $welcomePageTitleColor;
  32. font-size: 2.5rem;
  33. font-weight: 500;
  34. line-height: 1.18;
  35. margin-bottom: 16px;
  36. }
  37. .header-text-description {
  38. color: $welcomePageDescriptionColor;
  39. font-size: 1rem;
  40. font-weight: 400;
  41. line-height: 24px;
  42. margin-bottom: 20px;
  43. }
  44. #enter_room {
  45. display: flex;
  46. align-items: center;
  47. max-width: calc(100% - 40px);
  48. width: 680px;
  49. z-index: $zindex2;
  50. background-color: #fff;
  51. padding: 25px 30px;
  52. .enter-room-input-container {
  53. width: 100%;
  54. padding-right: 8px;
  55. padding-bottom: 5px;
  56. text-align: left;
  57. color: #253858;
  58. height: fit-content;
  59. border-width: 0px 0px 2px 0px;
  60. border-style: solid;
  61. border-image: linear-gradient(to right, #dee1e6, #fff) 1;
  62. .enter-room-title {
  63. font-size: 18px;
  64. font-weight: bold;
  65. padding-bottom: 5px;
  66. }
  67. .enter-room-input {
  68. border: none;
  69. display: inline-block;
  70. width: 100%;
  71. font-size: 14px;
  72. }
  73. ::placeholder {
  74. color: #253858;
  75. }
  76. }
  77. }
  78. .tab-container {
  79. font-size: 16px;
  80. position: relative;
  81. text-align: left;
  82. min-height: 354px;
  83. width: 710px;
  84. background: #75A7E7;
  85. display: flex;
  86. flex-direction: column;
  87. .tab-content{
  88. margin: 5px 0px;
  89. overflow: hidden;
  90. flex-grow: 1;
  91. position: relative;
  92. > * {
  93. position: absolute;
  94. }
  95. }
  96. .tab-buttons {
  97. font-size: 18px;
  98. color: #FFFFFF;
  99. display: flex;
  100. flex-grow: 0;
  101. flex-direction: row;
  102. min-height: 54px;
  103. width: 100%;
  104. .tab {
  105. text-align: center;
  106. background: rgba(9,30,66,0.37);
  107. height: 55px;
  108. line-height: 54px;
  109. flex-grow: 1;
  110. cursor: pointer;
  111. &.selected, &:hover {
  112. background: rgba(9,30,66,0.71);
  113. }
  114. &:last-child {
  115. margin-left: 1px;
  116. }
  117. }
  118. }
  119. }
  120. }
  121. .welcome-page-button {
  122. width: 51px;
  123. height: 35px;
  124. font-size: 14px;
  125. background: #0074E0;
  126. border-radius: 4px;
  127. color: #FFFFFF;
  128. text-align: center;
  129. vertical-align: middle;
  130. line-height: 35px;
  131. cursor: pointer;
  132. }
  133. .welcome-page-settings {
  134. color: $welcomePageDescriptionColor;
  135. position: absolute;
  136. top: 32px;
  137. right: 32px;
  138. z-index: $zindex2;
  139. * {
  140. cursor: pointer;
  141. font-size: 32px;
  142. }
  143. }
  144. .welcome-watermark {
  145. position: absolute;
  146. width: 100%;
  147. height: 100%;
  148. }
  149. }