4.3 - Expandable views
Last updated
Last updated
.filters_overlay {
background: var(--background-color);
height: 100%;
width: 100%;
position: fixed;
transition: all 2s ease-in-out;
z-index: 2;
top: -100vh;
}
#active-filters:checked + .filters_overlay {
top: 84px;
}.video_overlay {
z-index: 2;
background: var(--background-color);
height: 100%;
width: 100%;
position: fixed;
transition: all 2s ease-in-out;
left: 100vw;
top: 49px;
display: flex;
justify-content: space-around;
}
.video_video {
width: 50%;
}