2026-03-09 21:52:54 -04:00
|
|
|
html:has(body.page-gameboard) {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.page-gameboard {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.container {
|
2026-03-16 00:07:52 -04:00
|
|
|
overflow: clip;
|
2026-03-09 21:52:54 -04:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
2026-03-10 01:25:07 -04:00
|
|
|
|
2026-03-09 21:52:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
margin-bottom: -1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gameboard-page {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 425px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 550px) {
|
|
|
|
|
.gameboard-page {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 738px) {
|
|
|
|
|
.gameboard-page {
|
|
|
|
|
min-width: 666px;
|
|
|
|
|
}
|
2026-03-11 00:58:24 -04:00
|
|
|
|
|
|
|
|
body.page-gameboard .container {
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
2026-03-09 21:52:54 -04:00
|
|
|
}
|
|
|
|
|
|
2026-03-09 23:48:20 -04:00
|
|
|
#id_applet_game_kit {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
#id_game_kit {
|
|
|
|
|
flex: 1;
|
|
|
|
|
position: relative;
|
2026-03-09 21:52:54 -04:00
|
|
|
display: flex;
|
2026-03-09 23:48:20 -04:00
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
overflow-x: visible;
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
&::-webkit-scrollbar { display: none; }
|
2026-03-09 22:42:30 -04:00
|
|
|
|
2026-03-09 23:48:20 -04:00
|
|
|
.token { position: static; }
|
2026-03-09 22:42:30 -04:00
|
|
|
|
2026-03-09 23:48:20 -04:00
|
|
|
.token:hover .token-tooltip { display: none; }
|
|
|
|
|
|
|
|
|
|
.token,
|
|
|
|
|
.kit-item { font-size: 1.5rem; }
|
|
|
|
|
|
|
|
|
|
.kit-item { opacity: 0.6; }
|
2026-03-09 22:42:30 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#id_applet_new_game,
|
|
|
|
|
#id_applet_my_games {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
flex: 1;
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
small {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
font-style: italic;
|
2026-03-09 21:52:54 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-14 00:34:07 -04:00
|
|
|
#id_applet_my_games {
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-09 23:48:20 -04:00
|
|
|
#id_tooltip_portal {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
|
|
&.active { display: block; }
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 00:07:52 -04:00
|
|
|
#id_mini_tooltip_portal {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
width: fit-content;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
|
|
&.active { display: block; }
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-09 21:52:54 -04:00
|
|
|
@media (max-height: 500px) {
|
|
|
|
|
body.page-gameboard {
|
|
|
|
|
.container {
|
|
|
|
|
.row {
|
|
|
|
|
padding: 0.25rem 0;
|
|
|
|
|
.col-lg-6 h2 {
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|