login.css
921 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
42
43
44
45
html,body{
width: 100%;
height: 100%;
overflow: hidden;
}
.login-wrap{
width:calc(100% - 800px);
width:-webkit-calc(100% - 800px);
width:-moz-calc(100% - 800px);
height: 100%;
position: relative;
}
.login-main{
position: absolute;
right: 0;
top:50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
width: 400px;
}
.login-name{
font-size: 40px;
color: rgba(0,0,0,.8);
}
.login-hint{
font-size: 16px;
color: rgba(0,0,0,.6);
}
.login-btn{
width: 253px;
height: 58px;
cursor: pointer;
text-align: center;
line-height: 68px;
font-size: 20px;
color: #fff;
background: url("../../resource/img/login-btn.png") no-repeat;
}
.login-bg{
height: 100%;
width: 800px;
background: url("../../resource/img/login-bg.png") no-repeat;
background-size:100% 100% ;
}