-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignUpStyle.css
More file actions
73 lines (73 loc) · 1.44 KB
/
signUpStyle.css
File metadata and controls
73 lines (73 loc) · 1.44 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
body {
min-height: 640px;
background: -moz-linear-gradient(top,#977fc9,#ffffff);/*火狐*/
background: -webkit-gradient(linear, 0% 0%, 0% 100%,from(#977fc9), to(#ffffff));/*谷歌*/
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#977fc9), to(#ffffff)); /* Safari 4-5, Chrome 1-9*/
background: -webkit-linear-gradient(top, #977fc9, #ffffff); /*Safari5.1 Chrome 10+*/
background: -o-linear-gradient(top, #977fc9, #ffffff); /*Opera 11.10+*/
padding-right: 20%;
padding-top: 100px;
}
#left {
float: right;
}
#right {
float: right;
width: 240px;
height: 340px;
padding: 30px;
background: #ffffff;
margin-left: 10%;
}
#right h4 {
font-size: 14px;
margin-bottom: 30px;
}
#username,
#nickname {
background: url(login-locked-icon.png) 15px center no-repeat;
}
#password,
#password_confirm {
background: url(login-key-icon.png) 15px center no-repeat;
}
#username,
#password,
#password_confirm,
#nickname {
width: 100%;
padding: 8px 0;
border: 2px solid #e1e1e1;
margin-bottom: 20px;
text-indent: 43px;
}
#remember_me {
vertical-align: middle;
}
#have_account {
float: right;
color: #bcbcbc;
}
#submit {
margin-top: 5px;
margin-bottom: 10px;
width: 100%;
height: 38px;
font-size: 14px;
letter-spacing: 15px;
background: #c4e1fe;
border: 0;
}
#bottom {
width: 100%;
color: yellow;
}
hr {
margin-top: 40px;
}
.wrong_msg {
width: 100%;
color: red;
margin-top: -10px;
display: none;
}