26 lines
472 B
CSS
26 lines
472 B
CSS
.background {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
background-repeat: no-repeat;
|
|
|
|
background-color: #562a3b;
|
|
background-size: 100% auto;
|
|
background-image: url("/background.svg");
|
|
background-position: center top;
|
|
|
|
filter: brightness(1) hue-rotate(0deg);
|
|
transition: 3s filter linear, 3s -webkit-filter linear;
|
|
}
|
|
|
|
.night {
|
|
filter: brightness(0.3) hue-rotate(-82deg);
|
|
}
|
|
|
|
.container {
|
|
padding: 1.5rem;
|
|
flex: 1;
|
|
}
|