login.less 768 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*登录界面样式*/
  2. .login {
  3. width: 100%;
  4. height: 980px;
  5. background-image: url('../images/bg.jpg');
  6. background-size: 100% 100%;
  7. .login-header {
  8. display: flex;
  9. align-items: center;
  10. height: 80px;
  11. background-color: rgba(21, 20, 13, 0.5);
  12. img {
  13. width: 40px;
  14. height: 40px;
  15. margin: 0 15px 0 50px;
  16. }
  17. h1 {
  18. font-size: 30px;
  19. color: white;
  20. }
  21. }
  22. .login-content {
  23. width: 400px;
  24. height: 300px;
  25. background-color: #fff;
  26. margin: 50px auto;
  27. padding: 20px 40px;
  28. border-radius: 2px;
  29. h2 {
  30. text-align: center;
  31. font-size: 30px;
  32. font-weight:bold;
  33. margin-bottom: 20px;
  34. }
  35. .login-form {
  36. .login-form-button {
  37. width: 100%;
  38. }
  39. }
  40. }
  41. }