Zelda64Recomp/assets/scss/styles/components/Launcher.scss

111 lines
1.9 KiB
SCSS
Raw Normal View History

2024-01-07 22:33:22 +01:00
2024-01-10 17:03:10 +01:00
// TODO: Affect all elements with launcher fade-in
// @keyframes fade-launcher-in {
// 0% {
// opacity: 0;
// }
// to {
// opacity: 1;
// }
// }
2024-01-07 22:33:22 +01:00
.launcher {
display: block;
flex-direction: row;
justify-content: space-between;
position: relative;
width: 100%;
height: 100%;
background-color: $color-background-1;
2024-01-10 17:03:10 +01:00
// TODO: Affect all elements with launcher fade-in
// animation: 1.5s cubic-in-out 1 fade-launcher-in;
2024-01-07 22:33:22 +01:00
}
.launcher__vertical-split {
display: flex;
position: absolute;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
top: 0;
right: 50%;
bottom: 0;
left: 0;
&--right {
align-items: flex-end;
right: 0;
left: 50%;
}
}
2024-01-10 17:03:10 +01:00
@keyframes slide-mm-bg-over {
0% {
transform: translateX(space(100));
}
to {
transform: translateX(space(0));
}
}
.launcher__background-wrapper {
display: flex;
align-items: center;
justify-content: flex-start;
position: absolute;
left: -70vw;
right: -100%;
top: -55vw;
bottom: -50vw;
transform: translateX(space(0));
animation: 25s cubic-out 1 slide-mm-bg-over;
// height: auto;
}
@keyframes fade-mm-in {
0% {
opacity: 0;
}
to {
opacity: 0.1;
}
}
.launcher__background-mm {
position: absolute;
left: 0;
top: 0;
// top: -20%;
bottom: 0;
height: 100%;
width: auto;
opacity: 0.1;
animation: 2.5s cubic-in-out 1 fade-mm-in;
}
2024-01-07 22:33:22 +01:00
.launcher__title-quadrant {
flex: 1 1 auto;
padding-top: space(96);
padding-left: space(96);
width: auto;
height: auto;
&--right {
padding-right: space(96);
padding-left: 0;
}
}
.launcher__content-quadrant {
display: flex;
position: relative;
flex-direction: column;
align-items: flex-start;
justify-content: flex-end;
padding: space(32);
width: 100%;
height: auto;
flex: 1 1 100%;
}