Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

_welcome_page.scss 1.8KB

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