adminLogin.less 962 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. input {
  12. height: 36px;
  13. border-radius: 0px;
  14. }
  15. button {
  16. width: 300px;
  17. height: 36px;
  18. }
  19. .ant-input-group-addon {
  20. font-size: 17px;
  21. }
  22. .user-box {
  23. margin-bottom: 20px;
  24. }
  25. .pw-box {
  26. margin-bottom: 20px;
  27. }
  28. }
  29. .ant-checkbox-wrapper {
  30. margin-bottom: 20px;
  31. font-size: 14px;
  32. color: #878787;
  33. }
  34. .ant-btn {
  35. font-size: 18px;
  36. }
  37. input::-webkit-input-placeholder,
  38. textarea::-webkit-input-placeholder {
  39. color: #333;
  40. }
  41. input:-moz-placeholder,
  42. textarea:-moz-placeholder {
  43. color: #333;
  44. }
  45. input::-moz-placeholder,
  46. textarea::-moz-placeholder {
  47. color: #333;
  48. }
  49. input:-ms-input-placeholder,
  50. textarea:-ms-input-placeholder {
  51. color: #333;
  52. }