login.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .wave {
  2. position: fixed;
  3. height: 100%;
  4. width: 80%;
  5. left: 0;
  6. bottom: 0;
  7. z-index: -1;
  8. }
  9. .login-container {
  10. width: 100vw;
  11. height: 100vh;
  12. max-width: 100%;
  13. display: grid;
  14. grid-template-columns: repeat(2, 1fr);
  15. grid-gap: 8rem;
  16. padding: 0 2rem;
  17. }
  18. .img {
  19. display: flex;
  20. justify-content: flex-end;
  21. align-items: center;
  22. }
  23. .img img {
  24. width: 500px;
  25. }
  26. .login-box {
  27. display: flex;
  28. align-items: center;
  29. text-align: center;
  30. overflow: hidden;
  31. }
  32. .login-form {
  33. width: 360px;
  34. }
  35. .avatar {
  36. width: 350px;
  37. height: 80px;
  38. }
  39. .login-form h2 {
  40. margin: 20px 0 28px;
  41. color: #303133;
  42. font-weight: 600;
  43. font-size: 22px;
  44. font-family:
  45. "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
  46. "Microsoft YaHei", sans-serif;
  47. letter-spacing: 0.02em;
  48. }
  49. @media screen and (max-width: 1180px) {
  50. .login-container {
  51. grid-gap: 6rem;
  52. }
  53. .login-form {
  54. width: 290px;
  55. }
  56. .login-form h2 {
  57. font-size: 20px;
  58. margin: 12px 0 24px;
  59. }
  60. .img img {
  61. width: 360px;
  62. }
  63. .avatar {
  64. width: 280px;
  65. height: 80px;
  66. }
  67. }
  68. @media screen and (max-width: 968px) {
  69. .wave {
  70. display: none;
  71. }
  72. .img {
  73. display: none;
  74. }
  75. .login-container {
  76. grid-template-columns: 1fr;
  77. }
  78. .login-box {
  79. justify-content: center;
  80. }
  81. }
  82. /* Brand Red 按钮覆盖 */
  83. .login-form .el-button--primary {
  84. --el-button-bg-color: #C83A35;
  85. --el-button-border-color: #C83A35;
  86. --el-button-hover-bg-color: oklch(45% 0.16 25);
  87. --el-button-hover-border-color: oklch(45% 0.16 25);
  88. --el-button-active-bg-color: oklch(38% 0.15 25);
  89. --el-button-active-border-color: oklch(38% 0.15 25);
  90. letter-spacing: 0.15em;
  91. transition: background-color 0.2s ease;
  92. }
  93. .login-form .el-button--primary:focus-visible {
  94. outline: 2px solid #C83A35;
  95. outline-offset: 2px;
  96. }