login.css
1.47 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@keyframes cc{
0%{opacity: 0.4;transform: scale(0.1) ;top: -500px;}
50%{opacity: 0.4;transform: scale(0.1) rotateX(90deg);top: -50px;}
100%{opacity: 1;transform: scale(1) rotateX(0deg);top: 0;}
}
@media only screen and (max-width: 500px) {
.login{
width: 95%!important;
}
.sr{
padding:30px 70px!important;
}
}
html,body{
height:100%;
width:100%;
background: url(../img/loginbg1.jpg) no-repeat center center;
background-size:1920px 1000px;
perspective:500px;
}
*{
font-family:"仿宋";
}
.login{
width:450px;
position: relative;
top: 0;
margin: 15% auto;
background:rgba(255,255,255,1);
border-radius: 10px;
color: #27d;
animation: cc 4s ease-in-out ;
}
.login header{
padding: 10px;
border-bottom: 1px solid #27d;
}
.login header h1{
margin:0;
padding:0;
text-align: center;
font-size: 25px;
line-height: 40px;
}
.sr{
padding:30px 90px;
}
.name{
position:relative;
margin-bottom:20px;
clear:both;
border:1px solid #27d;
width: 100%;
height: 40px;
}
.name label{
position: absolute;
color: #27d;
top: 10px;
left: 10px;
}
.name_inp{
padding-left: 34px;
height: 38px;
line-height: 38px;
line-height: 36px\9;
border: none;
background-color: #fff;
width:100%;
outline:none;
}
.dl{
width:150px;
height:40px;
background:#27d;
line-height:40px;
display:block;
margin:0 auto;
color:#fff;
border:0;
font-size:18px;
}