25 lines
364 B
CSS
25 lines
364 B
CSS
|
.bg {
|
||
|
position: absolute;
|
||
|
right: 0%;
|
||
|
width: 50vw;
|
||
|
height: 100%;
|
||
|
background-color: var(--lightDark);
|
||
|
}
|
||
|
|
||
|
.flexCenter {
|
||
|
height: 100%;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
position: relative;
|
||
|
z-index: 1;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-evenly;
|
||
|
align-items: center;
|
||
|
}
|