forked from AiKuTong/Face-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrec.css
135 lines (134 loc) · 2.57 KB
/
rec.css
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
body{
font:14px/28px "微软雅黑";
background-image: linear-gradient(to right, #2af598 0%, #009efd 100%);
}
.contact *:focus{outline :none;}
.contact{
width: 700px;
height: auto;
background: linear-gradient(to left, #00c9ff, #92fe9d);
box-shadow: 2px 2px 8px #888888;
margin: 40px auto;
padding: 10px;
}
.contact ul {
width: 650px;
margin: 0 auto;
}
.contact ul li{
border-bottom: 1px solid #dfdfdf;
list-style: none;
padding: 12px;
}
.contact ul li label {
width: 120px;
display: inline-block;
float: left;
}
.contact ul li input[type=text],.contact ul li input[type=password]{
width: 220px;
height: 25px;
border :1px solid #aaa;
padding: 3px 8px;
border-radius: 5px;
}
.contact ul li input:focus{
border-color: #c00;
}
.contact ul li input[type=text]{
transition: padding .25s;
-o-transition: padding .25s;
-moz-transition: padding .25s;
-webkit-transition: padding .25s;
}
.contact ul li input[type=password]{
transition: padding .25s;
-o-transition: padding .25s;
-moz-transition: padding .25s;
-webkit-transition: padding .25s;
}
.contact ul li input:focus{
padding-right: 70px;
}
.btn{
position: relative;
left: 200px;
}
.tips{
color: rgba(0, 0, 0, 0.5);
padding-left: 10px;
}
.tips_true,.tips_false{
padding-left: 10px;
}
.tips_true{
color: green;
}
.tips_false{
color: red;
}
.button{
width: 80px;
height: 30px;
margin-top: 7px;
margin-left: 50px;
border: 0px;
border-radius: 5px;
background: linear-gradient(to right, #EAECC6, #2BC0E4);
box-shadow: 2px 2px 4px #888888;
}
/*当窗口宽度小于500px的时候(手机访问)*/
@media only screen and (max-width: 500px) {
.contact{
width: 300px;
height: auto;
background: linear-gradient(to left, #00c9ff, #92fe9d);
box-shadow: 2px 2px 8px #888888;
margin: 40px auto;
padding: 10px;
}
.contact ul {
width: 250px;
margin: 0 auto;
}
.contact ul li{
border-bottom: 1px solid #dfdfdf;
list-style: none;
padding: 12px;
}
.contact ul li label {
width: 70px;
display: inline-block;
float: left;
}
.contact ul li input[type=text],.contact ul li input[type=password]{
width: 130px;
height: 25px;
border :1px solid #aaa;
padding: 3px 8px;
border-radius: 5px;
}
.contact ul li input:focus{
padding-right: none;
}
.tips{
color: rgba(0, 0, 0, 0.5);
width: 300px;
padding-left: 25px;
text-align: center;
}
.btn{
position: relative;
left: 5px;
}
.button{
width: 80px;
height: 30px;
margin-top: 7px;
margin-left: 50px;
border: 0px;
border-radius: 5px;
background: linear-gradient(to right, #EAECC6, #2BC0E4);
box-shadow: 2px 2px 4px #888888;
}
}