25 lines
460 B
CSS
Vendored
25 lines
460 B
CSS
Vendored
#img {
|
|
background-image: url("/images/DSC08544.jpg");
|
|
padding: 0px;
|
|
margin: 0px;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
height: 100%
|
|
}
|
|
#login {
|
|
|
|
margin: 0px;
|
|
height: 100%;
|
|
}
|
|
.form-control {
|
|
margin-bottom: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
.vertical-center {
|
|
margin: 0;
|
|
position: absolute;
|
|
width: calc(100% - 15px);
|
|
top: 50%;
|
|
-ms-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
}
|