2025-10-28 01:57:19 +02:00
|
|
|
#content {
|
|
|
|
|
display: flex;
|
2025-10-28 12:40:48 +02:00
|
|
|
margin: 0 4rem;
|
2025-10-28 01:57:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#score,
|
|
|
|
|
#codes,
|
|
|
|
|
#fights {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2025-10-28 12:40:48 +02:00
|
|
|
max-height: 80vh;
|
|
|
|
|
margin-top: 2rem;
|
2025-10-28 23:38:15 +02:00
|
|
|
width: 33%;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
2025-10-28 01:57:19 +02:00
|
|
|
|
|
|
|
|
.slot {
|
2025-10-28 12:40:48 +02:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2025-10-28 01:57:19 +02:00
|
|
|
margin-bottom: 0.5rem;
|
2025-10-28 12:40:48 +02:00
|
|
|
gap: 0.5rem;
|
2025-10-28 01:57:19 +02:00
|
|
|
}
|
2025-10-28 23:38:15 +02:00
|
|
|
|
|
|
|
|
.inset-box-shadow {
|
|
|
|
|
box-shadow: inset 0px 0px 40px 40px var(--bg-color);
|
|
|
|
|
width: 200%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
margin-left: -200px;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scrollable {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
padding: 60px 0px;
|
|
|
|
|
}
|
2025-10-28 01:57:19 +02:00
|
|
|
}
|