20 lines
454 B
CSS
20 lines
454 B
CSS
.logo {
|
|
background-image: url(./img/logo.png);
|
|
background-repeat: no-repeat;
|
|
background-size: 100%;
|
|
width: 150px;
|
|
text-indent: 100%;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
margin-left: 10px;
|
|
height: 64px;
|
|
}
|
|
|
|
.loginBackground {
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
margin: auto;
|
|
min-height: 100vh;
|
|
background-image: url(./img/loginBackground.png);
|
|
} |