login.css 1001 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .login-container {
  2. height: calc(100% - 50px);
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. }
  7. .login-dialog {
  8. width: 400px;
  9. height: 400px;
  10. background-color: rgba(255, 255, 255, 0.8);
  11. border-radius: 10px;
  12. }
  13. /* 标题 */
  14. .login-dialog h3 {
  15. text-align: center;
  16. padding: 50px 0;
  17. }
  18. /* 针对一行设置样式 */
  19. .login-dialog .row {
  20. width: 100%;
  21. height: 50px;
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. }
  26. .login-dialog .row span {
  27. width: 100px;
  28. font-weight: 700;
  29. }
  30. #user_name, #password {
  31. width: 200px;
  32. height: 40px;
  33. font-size: 20px;
  34. line-height: 40px;
  35. padding-left: 10px;
  36. border: none;
  37. outline: none;
  38. border-radius: 10px;
  39. }
  40. #submit {
  41. width: 300px;
  42. height: 50px;
  43. background-color: rgb(0, 128, 0);
  44. color: white;
  45. border: none;
  46. outline: none;
  47. border-radius: 10px;
  48. margin-top: 20px;
  49. }
  50. #submit:active {
  51. background-color: #666;
  52. }