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-04-06 01:30:31 -04:00
|
|
|
@media (orientation: landscape) {
|
2026-03-23 01:06:14 -04:00
|
|
|
// Restore clip in landscape — overrides the >738px overflow:visible above,
|
|
|
|
|
// preventing the gameboard applets from bleeding into the footer sidebar.
|
|
|
|
|
body.page-gameboard .container {
|
|
|
|
|
overflow: clip;
|
|
|
|
|
}
|
|
|
|
|
// Reset the 666px min-width so gameboard-page shrinks to fit within the
|
|
|
|
|
// sidebar-bounded container rather than overflowing into the footer sidebar.
|
|
|
|
|
.gameboard-page {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2026-03-24 22:25:25 -04:00
|
|
|
flex-wrap: wrap;
|
2026-03-09 23:48:20 -04:00
|
|
|
align-items: center;
|
2026-03-24 22:25:25 -04:00
|
|
|
justify-content: center;
|
|
|
|
|
gap: 0.75rem;
|
2026-03-09 23:48:20 -04:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|