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

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