login.scss 895 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .login_box {
  2. height: 100vh;
  3. background: url('../../static/img/bg.svg') no-repeat;
  4. background-size: 100% 100%;
  5. display: grid;
  6. place-items: center;
  7. background-color: #232526;
  8. .el-card {
  9. z-index: 2;
  10. width: 350px;
  11. height: 310px;
  12. border: 1px solid #dcdfe6;
  13. border-radius: 15px;
  14. background-color: rgba($color: #000000, $alpha: 0.1);
  15. box-shadow: 8px 8px 10px -3px rgba($color: #fff, $alpha: 0.3);
  16. transition: all 1s;
  17. .el-input {
  18. margin-top: 20px;
  19. /deep/ .el-input__inner {
  20. background: transparent;
  21. color: white;
  22. }
  23. }
  24. .remember_password {
  25. display: flex;
  26. margin-top: 5px;
  27. /deep/ .el-checkbox__label {
  28. color: #fff;
  29. }
  30. }
  31. .el-button {
  32. width: 100%;
  33. margin-top: 15px;
  34. transition: all 0.5s;
  35. }
  36. }
  37. .el-card:hover {
  38. background-color: rgba($color: #000000, $alpha: 0.3);
  39. cursor: pointer;
  40. }
  41. }