55 lines
923 B
CSS
55 lines
923 B
CSS
.optionBox {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 55vw;
|
|
background: rgba(245, 240, 221);
|
|
color: #8391b8;
|
|
border-style: solid;
|
|
border-color: #8391b8;
|
|
border-width: 5px;
|
|
border-radius: 30px;
|
|
padding: 10px;
|
|
}
|
|
.optionSection {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
row-gap: 1rem;
|
|
}
|
|
|
|
.spriteBox {
|
|
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: 98vw;
|
|
max-height: 45vh;
|
|
}
|
|
.spriteBox video {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
}
|
|
|