Initial commit

This commit is contained in:
Jérémy Galland
2018-09-27 11:02:26 +02:00
commit e38884fd0d
13 changed files with 35752 additions and 0 deletions

36
css/login.css Normal file
View File

@@ -0,0 +1,36 @@
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%;
}
}