31 lines
514 B
CSS
31 lines
514 B
CSS
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
body {
|
|
height: 100%;
|
|
width: 100%;
|
|
background-image: url("images/login.jpg");
|
|
background-size: cover;
|
|
background-position: right;
|
|
background-repeat: no-repeat;
|
|
}
|
|
div.logIn {
|
|
height: 500px;
|
|
width: 500px;
|
|
background-color: white;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 25%;
|
|
margin-right: -50%;
|
|
transform: translate(-50%, -50%);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
input.input {
|
|
background-color: grey;
|
|
border-radius: 5px;
|
|
}
|