Impl of Language selection and more #11

Merged
latenightdef merged 24 commits from mrrpmeowfurry/fifty-shades-of-bully:main into develop 2025-06-25 19:26:22 +00:00
2 changed files with 61 additions and 11 deletions
Showing only changes of commit 58f91217ed - Show all commits

View file

@ -1,9 +1,34 @@
.spriteBox {
height: 50vh;
width: 30vw;
display: flex;
justify-content: center;
align-items: center;
width: 500px;
max-height: 500px;
margin: 0 auto;
overflow: hidden;
}
.spriteBox video {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
object-fit: contain;
display: block;
margin: 0 auto;
}
@media (max-width: 768px) {
.spriteBox {
width: 75vw;
}
}
.spriteBox {
width: 98vw;
max-height: 45vh;
}
.spriteBox video {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
}
}

View file

@ -20,11 +20,36 @@
}
.spriteBox {
height: 50vh;
width: 30vw;
display: flex;
justify-content: center;
align-items: center;
width: 500px;
max-height: 500px;
margin: 0 auto;
overflow: hidden;
}
.spriteBox video {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
object-fit: contain;
display: block;
margin: 0 auto;
}
@media (max-width: 768px) {
.spriteBox {
width: 75vw;
}
.spriteBox {
width: 98vw;
max-height: 45vh;
}
.spriteBox video {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
}
}