54 lines
978 B
CSS
54 lines
978 B
CSS
body {
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.header {
|
|
background: url(images/Header.login.png) no-repeat;
|
|
height: 54px;
|
|
width: 300px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 24px;
|
|
line-height: 30px;
|
|
}
|
|
|
|
.form-login {
|
|
max-width: 300px;
|
|
padding: 19px 29px 29px;
|
|
margin: 0 auto 20px;
|
|
background-color: #fff;
|
|
border: 1px solid #e5e5e5;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
|
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
|
box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
|
}
|
|
|
|
.validation-summary-errors ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.rememberMe {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
legend {
|
|
border-bottom: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
|
|
@media (max-width: 480px) {
|
|
.header {
|
|
background: url(images/Header.login.mobile.png) no-repeat;
|
|
height: 32px;
|
|
width: 200px;
|
|
}
|
|
}
|