style.less 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .login-page {
  2. height: 100%;
  3. background: linear-gradient(#fff, #e6f7ff);
  4. #particles-js {
  5. position: absolute;
  6. top: 0;
  7. left: 0;
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .login-page-container {
  12. height: 100%;
  13. display: grid;
  14. place-items: center;
  15. position: relative;
  16. z-index: 10;
  17. }
  18. .login-card {
  19. width: 900px;
  20. height: 600px;
  21. border-radius: 8px;
  22. overflow: hidden;
  23. backdrop-filter: blur(6px);
  24. box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  25. display: grid;
  26. grid-template-columns: 1fr 1fr;
  27. }
  28. .login-card-left {
  29. background: rgba(255, 255, 255, 0.45);
  30. }
  31. .login-card-right {
  32. // background: #EFF6FA;
  33. }
  34. .login-form-box {
  35. height: 560px;
  36. display: grid;
  37. place-items: center;
  38. .login-form {
  39. min-width: 280px;
  40. .login-text {
  41. font-weight: 700;
  42. }
  43. }
  44. .login-subtitle {
  45. font-size: 0.9em;
  46. color: #666;
  47. margin-bottom: 24px;
  48. letter-spacing: 2px;
  49. }
  50. }
  51. .login-effect-box {
  52. height: 100%;
  53. display: grid;
  54. place-items: center;
  55. .login-effect {
  56. width: 180px;
  57. height: 180px;
  58. position: relative;
  59. }
  60. .login-effect-arc {
  61. width: 100%;
  62. height: 100%;
  63. border-radius: 50%;
  64. background-color: #fa8c16;
  65. &::after {
  66. content: '';
  67. width: 200%;
  68. height: 100%;
  69. top: 50%;
  70. left: -50%;
  71. position: absolute;
  72. z-index: 10;
  73. background-color: rgba(255, 255, 255, 0.001);
  74. backdrop-filter: blur(16px);
  75. border-top: 1px solid rgba(255, 255, 255, 0.2);
  76. }
  77. }
  78. }
  79. .login-copyright {
  80. font-size: 12px;
  81. color: #666;
  82. line-height: 40px;
  83. padding-left: 20px;
  84. box-sizing: border-box;
  85. }
  86. }