register.css
750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.register {
width: 100%;
height: 100vh;
background: url('../staticImages/login.png');
background-size: 100% 100%;
position: relative;
}
.login_form {
width: 600px;
background-color: #ffffff;
border-radius: 10px;
height: 500px;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
padding: 30px 30px 0 0px;
}
.register_title {
text-align: center;
line-height: 25px;
font-size: 26px;
color: #4a4a4a;
margin: 15px 0;
}
input[disabled] {
color:#fff;
opacity:1;
background-color: #f0f0f0;
}
.layui-form-item .layui-inline {
display: inline-block;
margin-right: 0;
}
.submit_button {
margin-top: 30px;
padding-left: 160px;
}