Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.less 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. @import '../../theme/vars';
  2. .loginPage {
  3. display: flex;
  4. background-color: rgba(255, 255, 255, 0.1);
  5. .loginLeft {
  6. // width: 610px;
  7. width: 40%;
  8. background-color: rgba(255, 255, 255, 0.1);
  9. height: 100vh;
  10. display: flex;
  11. align-items: center;
  12. }
  13. .leftContainer {
  14. width: 60%;
  15. padding: 5px, 0px, 5px, 0px;
  16. margin: 0 auto;
  17. }
  18. .loginRight {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. flex: 1;
  23. position: relative;
  24. &::before {
  25. content: ' ';
  26. position: absolute;
  27. top: 0;
  28. bottom: 0;
  29. left: 0;
  30. right: 0;
  31. background-color: rgba(24, 73, 169, 0.6);
  32. background-image: url('@/assets/svg/login-background.svg');
  33. background-size: cover;
  34. background-blend-mode: multiply;
  35. filter: blur(3px);
  36. background-position: center;
  37. z-index: -1;
  38. }
  39. .white {
  40. }
  41. .pink {
  42. color: #e9d7fe;
  43. }
  44. .rightPanel {
  45. max-width: 670px;
  46. .loginTitle {
  47. font-size: 68px;
  48. font-style: normal;
  49. font-weight: 600;
  50. line-height: 90px;
  51. letter-spacing: -1.44px;
  52. }
  53. .loginDescription {
  54. font-size: 20px;
  55. font-style: normal;
  56. font-weight: 500;
  57. line-height: 30px;
  58. }
  59. .loginRateNumber {
  60. font-size: 16px;
  61. font-style: normal;
  62. font-weight: 600;
  63. line-height: 24px;
  64. }
  65. .loginRateReviews {
  66. font-size: 16px;
  67. font-style: normal;
  68. font-weight: 500;
  69. line-height: 24px;
  70. }
  71. }
  72. }
  73. .loginTitle {
  74. //styleName: Heading/1;
  75. font-size: 38px;
  76. font-weight: 600;
  77. line-height: 46px;
  78. letter-spacing: 0em;
  79. height: 80px;
  80. margin-bottom: 69px;
  81. // text-align: center;
  82. span {
  83. font-size: 16px;
  84. line-height: 24px;
  85. }
  86. }
  87. @media screen and (max-width: 957px) {
  88. .loginLeft {
  89. width: 100%;
  90. height: 100%;
  91. }
  92. .modal {
  93. width: 80%;
  94. }
  95. }
  96. }