login.scss 777 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* login */
  2. .login-home {
  3. position: absolute;
  4. top: 0;
  5. left: 0;
  6. bottom: 0;
  7. right: 0;
  8. z-index: 8;
  9. background-image: url(../images/bg-home.png);
  10. background-repeat: no-repeat;
  11. background-size: cover;
  12. overflow: auto;
  13. }
  14. .login-box {
  15. position: absolute;
  16. width: 390px;
  17. top: 50%;
  18. left: 50%;
  19. transform: translate(-50%, -50%);
  20. z-index: 9;
  21. background-color: #fff;
  22. box-shadow: 0px 25px 50px 0px rgba(0, 31, 208, 0.3);
  23. overflow: hidden;
  24. padding: 50px;
  25. }
  26. .login-title {
  27. text-align: center;
  28. margin-bottom: 26px;
  29. h1 {
  30. font-size: 16px;
  31. }
  32. img {
  33. display: block;
  34. width: 64px;
  35. height: 64px;
  36. margin: 0 auto;
  37. }
  38. }
  39. .login-form {
  40. .el-form-item:last-child {
  41. margin-bottom: 0;
  42. }
  43. .el-input__prefix {
  44. left: 9px;
  45. }
  46. }