adminLogin.less 1019 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. body {
  2. background: #fff url(../../../image/bg.jpg) no-repeat;
  3. background-size: cover;
  4. }
  5. .login-box {
  6. width: 400px;
  7. height: 320px;
  8. padding: 50px 50px 0 50px;
  9. background: #fff;
  10. margin: 40px auto;
  11. position: relative;
  12. left: 200px;
  13. top: 90px;
  14. input {
  15. height: 36px;
  16. border-radius: 0px;
  17. }
  18. button {
  19. width: 300px;
  20. height: 36px;
  21. }
  22. .ant-input-group-addon {
  23. font-size: 17px;
  24. }
  25. .user-box {
  26. margin-bottom: 20px;
  27. }
  28. .pw-box {
  29. margin-bottom: 20px;
  30. }
  31. }
  32. .ant-checkbox-wrapper {
  33. margin-bottom: 20px;
  34. font-size: 14px;
  35. color: #878787;
  36. }
  37. .ant-btn {
  38. font-size: 18px;
  39. }
  40. input::-webkit-input-placeholder,
  41. textarea::-webkit-input-placeholder {
  42. color: #333;
  43. }
  44. input:-moz-placeholder,
  45. textarea:-moz-placeholder {
  46. color: #333;
  47. }
  48. input::-moz-placeholder,
  49. textarea::-moz-placeholder {
  50. color: #333;
  51. }
  52. input:-ms-input-placeholder,
  53. textarea:-ms-input-placeholder {
  54. color: #333;
  55. }