37 lines
648 B
CSS
37 lines
648 B
CSS
|
|
body.login{
|
||
|
|
background-color: #e0e0e0;
|
||
|
|
height: 100%;
|
||
|
|
overflow-y: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
section.login{
|
||
|
|
width: 50%;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding-top: 50%;
|
||
|
|
transform: translateY(-50%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.login .illustration{
|
||
|
|
width: 100%;
|
||
|
|
line-height: 100%!important;
|
||
|
|
background: url('../img/login.png');
|
||
|
|
background-position: center;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: cover;
|
||
|
|
}
|
||
|
|
|
||
|
|
.login button[type=submit]{
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media screen and (max-width: 992px) {
|
||
|
|
.login .illustration{
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
section.login{
|
||
|
|
width: 50%;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding-top: 100%;
|
||
|
|
}
|
||
|
|
}
|