mars-v2-frontend/components/Layout/Layout.module.css
2022-09-07 20:12:19 +01:00

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;
}