您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_welcome_page.scss 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. body.welcome-page {
  2. background: inherit;
  3. overflow: auto;
  4. }
  5. .welcome {
  6. font-family: $welcomePageFontFamily;
  7. height: 100%;
  8. position: relative;
  9. .header {
  10. align-items: center;
  11. background: $welcomePageHeaderBackground;
  12. display: flex;
  13. flex-direction: column;
  14. overflow: hidden;
  15. position: relative;
  16. text-align: center;
  17. .header-text {
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: space-around;
  21. margin-top: 120px;
  22. margin-bottom: 20px;
  23. max-width: calc(100% - 40px);
  24. min-height: 286px;
  25. width: 645px;
  26. }
  27. .header-text-title {
  28. color: $welcomePageTitleColor;
  29. font-size: 48px;
  30. letter-spacing: -1px;
  31. line-height: 58px;
  32. margin-bottom: 20px;
  33. }
  34. .header-text-description {
  35. color: $welcomePageDescriptionColor;
  36. font-size: 20px;
  37. line-height: 28px;
  38. opacity: 0.8;
  39. }
  40. .header-image {
  41. background-image: url(../images/welcome_page/curves.png);
  42. background-size: contain;
  43. height: 209px;
  44. position: absolute;
  45. width: 1070px;
  46. }
  47. #new_enter_room {
  48. align-items: center;
  49. display: flex;
  50. margin-bottom: 20px;
  51. max-width: calc(100% - 40px);
  52. position: relative;
  53. z-index: 2;
  54. .enter-room-input {
  55. display: inline-block;
  56. margin-right: 15px;
  57. width: 350px;
  58. }
  59. }
  60. }
  61. .welcome-page-button {
  62. font-size: 16px;
  63. }
  64. }
  65. .welcome.with-content {
  66. .header {
  67. min-height: 552px;
  68. }
  69. .header-image {
  70. left: -61px;
  71. top: 401px;
  72. }
  73. }
  74. .welcome.without-content {
  75. .header {
  76. height: 100%;
  77. }
  78. .header-image {
  79. bottom: -20px;
  80. left: 0;
  81. }
  82. }