12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*登录界面样式*/
- .login {
- width: 100%;
- height: 980px;
- background-image: url('../images/bg.jpg');
- background-size: 100% 100%;
- .login-header {
- display: flex;
- align-items: center;
- height: 80px;
- background-color: rgba(21, 20, 13, 0.5);
- img {
- width: 40px;
- height: 40px;
- margin: 0 15px 0 50px;
- }
- h1 {
- font-size: 30px;
- color: white;
- }
- }
- .login-content {
- width: 400px;
- height: 300px;
- background-color: #fff;
- margin: 50px auto;
- padding: 20px 40px;
- border-radius: 2px;
- h2 {
- text-align: center;
- font-size: 30px;
- font-weight:bold;
- margin-bottom: 20px;
- }
- .login-form {
- .login-form-button {
- width: 100%;
- }
- }
- }
- }
|