39 lines
660 B
CSS
39 lines
660 B
CSS
.favicon {
|
|
position: relative;
|
|
top: 5px;
|
|
max-width: 250px;
|
|
max-height: 250px;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.authenticationBox {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
position: relative;
|
|
padding: 1rem;
|
|
|
|
/* Image */
|
|
background-image: url("../../public//images/auth/cms_home.jpg");
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.authenticationBox::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
@media (min-width: 600px) {
|
|
.authenticationBox {
|
|
padding: 1rem;
|
|
}
|
|
}
|