login.css 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. *{
  2. margin:0;
  3. paddig:0;
  4. }
  5. body{
  6. height:100vh;
  7. overflow:hidden;
  8. font-family:΢���ź�,Microsoft YaHei;
  9. }
  10. .login{
  11. width:508px;
  12. height:340px;
  13. background:rgba(54, 61, 76, 0.72);
  14. border-radius:10px;
  15. margin:20vh auto;
  16. text-align:center;
  17. }
  18. h4{
  19. font-size:24px;
  20. width:330px;
  21. margin:0 auto;
  22. font-weight:400;
  23. height:40px;
  24. padding: 30px 0 12px 0;
  25. color: #41C7DB;
  26. }
  27. .login>p>input{
  28. width: 290px;
  29. height: 40px;
  30. background: white;
  31. margin-bottom: 20px;
  32. padding-left: 36px;
  33. outline:none;
  34. border:1px solid #a9a9a9;
  35. box-shadow: 0 0 0 1000px white inset;
  36. -webkit-box-shadow: 0 0 0 1000px white inset;
  37. }
  38. #inpu+img{
  39. position:absolute;
  40. left: 97px;
  41. top: 10px;
  42. }
  43. #pwd+img{
  44. position:absolute;
  45. left: 97px;
  46. top: 10px;
  47. }
  48. #btn{
  49. width:226px;
  50. height:36px;
  51. margin:0 auto;
  52. border-radius:5px;
  53. cursor:pointer;
  54. font-size:14px;
  55. line-height:36px;
  56. margin-top:20px;
  57. background: #41C7DB;
  58. color:white;
  59. }
  60. #btn:hover{
  61. border:1px solid #ccc;
  62. }