adminLogin.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. .ant-input {width:268px;}
  28. }
  29. .pw-box {
  30. margin-bottom: 20px;
  31. .ant-input {width:268px;}
  32. }
  33. }
  34. .ant-checkbox-wrapper {
  35. margin-bottom: 20px;
  36. font-size: 14px;
  37. color: #878787;
  38. }
  39. .ant-btn {
  40. font-size: 18px;
  41. }
  42. input::-webkit-input-placeholder,
  43. textarea::-webkit-input-placeholder {
  44. color: #333;
  45. }
  46. input:-moz-placeholder,
  47. textarea:-moz-placeholder {
  48. color: #333;
  49. }
  50. input::-moz-placeholder,
  51. textarea::-moz-placeholder {
  52. color: #333;
  53. }
  54. input:-ms-input-placeholder,
  55. textarea:-ms-input-placeholder {
  56. color: #333;
  57. }