選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_welcome_page.scss 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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: 2.5rem;
  38. font-weight: 500;
  39. line-height: 1.18;
  40. margin-bottom: $welcomePageHeaderTextTitleMarginBottom;
  41. }
  42. .header-text-description {
  43. display: $welcomePageHeaderTextDescriptionDisplay;
  44. color: $welcomePageDescriptionColor;
  45. font-size: 1rem;
  46. font-weight: 400;
  47. line-height: 24px;
  48. margin-bottom: 20px;
  49. }
  50. #enter_room {
  51. display: flex;
  52. align-items: center;
  53. max-width: calc(100% - 40px);
  54. width: $welcomePageEnterRoomWidth;
  55. z-index: $zindex2;
  56. background-color: #fff;
  57. padding: $welcomePageEnterRoomPadding;
  58. border-radius: $welcomePageEnterRoomBorderRadius;
  59. .enter-room-input-container {
  60. width: 100%;
  61. padding: $welcomePageEnterRoomInputContainerPadding;
  62. text-align: left;
  63. color: #253858;
  64. height: fit-content;
  65. border-width: $welcomePageEnterRoomInputContainerBorderWidth;
  66. border-style: $welcomePageEnterRoomInputContainerBorderStyle;
  67. border-image: $welcomePageEnterRoomInputContainerBorderImage;
  68. .enter-room-title {
  69. display: $welcomePageEnterRoomTitleDisplay;
  70. font-size: 18px;
  71. font-weight: bold;
  72. padding-bottom: 5px;
  73. }
  74. .enter-room-input {
  75. border: none;
  76. display: inline-block;
  77. width: 100%;
  78. font-size: 14px;
  79. }
  80. ::placeholder {
  81. color: #253858;
  82. }
  83. }
  84. }
  85. .tab-container {
  86. font-size: 16px;
  87. position: relative;
  88. text-align: left;
  89. min-height: 354px;
  90. width: 710px;
  91. background: #75A7E7;
  92. display: $welcomePageTabContainerDisplay;
  93. flex-direction: column;
  94. .tab-content{
  95. display: $welcomePageTabContentDisplay;
  96. margin: 5px 0px;
  97. overflow: hidden;
  98. flex-grow: 1;
  99. position: relative;
  100. > * {
  101. position: absolute;
  102. }
  103. }
  104. .tab-buttons {
  105. font-size: 18px;
  106. color: #FFFFFF;
  107. display: $welcomePageTabButtonsDisplay;
  108. flex-grow: 0;
  109. flex-direction: row;
  110. min-height: 54px;
  111. width: 100%;
  112. .tab {
  113. display: $welcomePageTabDisplay;
  114. text-align: center;
  115. background: rgba(9,30,66,0.37);
  116. height: 55px;
  117. line-height: 54px;
  118. flex-grow: 1;
  119. cursor: pointer;
  120. &.selected, &:hover {
  121. background: rgba(9,30,66,0.71);
  122. }
  123. &:last-child {
  124. margin-left: 1px;
  125. }
  126. }
  127. }
  128. }
  129. }
  130. .welcome-page-button {
  131. width: $welcomePageButtonWidth;
  132. height: $welcomePageButtonHeight;
  133. font-size: 14px;
  134. font-weight: $welcomePageButtonFontWeight;
  135. background: #0074E0;
  136. border-radius: $welcomePageButtonBorderRadius;
  137. color: #FFFFFF;
  138. text-align: center;
  139. vertical-align: middle;
  140. line-height: $welcomePageButtonLineHeight;
  141. cursor: pointer;
  142. }
  143. .welcome-page-settings {
  144. color: $welcomePageDescriptionColor;
  145. position: absolute;
  146. top: 32px;
  147. right: 32px;
  148. z-index: $zindex2;
  149. * {
  150. cursor: pointer;
  151. font-size: 32px;
  152. }
  153. }
  154. .welcome-watermark {
  155. position: absolute;
  156. width: 100%;
  157. height: 100%;
  158. }
  159. }