38 lines
778 B
CSS
38 lines
778 B
CSS
@media (max-width: 767px) {
|
|
.form-signin {
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
border-radius: 5px;
|
|
max-width: 320px;
|
|
border: solid 1px #ddd;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
body {
|
|
background-color: #5bc0de;
|
|
background: url('../images/bg2.jpg') fixed no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.container {
|
|
background: url('../images/bg3.png') no-repeat;
|
|
background-size: contain;
|
|
width: 704px;
|
|
height: 404px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.form-signin-heading {
|
|
padding: 28px 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.login-wrap {
|
|
padding: 0;
|
|
margin: 36px 0 0 370px;
|
|
width: 280px;
|
|
height: 200px;
|
|
}
|
|
}
|