54 lines
1020 B
CSS
54 lines
1020 B
CSS
#registration {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: -145px 0 0 -195px;
|
|
padding: 20px;
|
|
width: 350px;
|
|
height: 250px;
|
|
background-color: #FFF;
|
|
}
|
|
#registration h1 {
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 28px;
|
|
font-weight: normal;
|
|
margin: 0 0 30px 0;
|
|
}
|
|
|
|
#registration label {
|
|
display: block;
|
|
float: left;
|
|
width: 100px;
|
|
font-size: 20px;
|
|
line-height: 35px;
|
|
}
|
|
#registration input[type="email"], input[type="password"], input[type="text"] {
|
|
width: 230px;
|
|
font-size: 20px;
|
|
border: #EAEAEA 1px solid;
|
|
background-color: #FCFCFC;
|
|
padding: 5px;
|
|
}
|
|
#registration input[type="submit"] {
|
|
color: #FFF;
|
|
border: #EAEAEA 1px solid;
|
|
background-color: #05A;
|
|
font-size: 25px;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
}
|
|
#registration .complete {
|
|
width: 100%;
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
}
|
|
#email_error, #password_error, #password_c_error {
|
|
float: right;
|
|
color: #E30;
|
|
width: 350px;
|
|
height: 30px;
|
|
margin: 4px -350px 0 0;
|
|
line-height: 30px;
|
|
font-size: 15px;
|
|
} |