2026-03-02 15:45:12 -05:00
|
|
|
body {
|
2026-03-06 18:14:01 -05:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-02 15:45:12 -05:00
|
|
|
background-color: rgba(var(--priUser), 1);
|
|
|
|
|
color: rgba(var(--secUser), 1);
|
|
|
|
|
font-family: Georgia, serif;
|
2026-03-06 18:14:01 -05:00
|
|
|
height: 100vh;
|
2026-03-02 15:45:12 -05:00
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: rgba(var(--terUser), 1);
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: rgba(var(--ninUser), 1);
|
|
|
|
|
text-shadow: 0 0 0.5rem rgba(var(--terUser), 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 960px;
|
2026-03-10 01:25:07 -04:00
|
|
|
width: 100%;
|
2026-03-02 15:45:12 -05:00
|
|
|
margin: 0 auto;
|
2026-03-23 01:06:14 -04:00
|
|
|
// padding: 0 1rem;
|
2026-03-09 14:40:34 -04:00
|
|
|
flex: 1;
|
2026-03-02 15:45:12 -05:00
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
|
padding: 0.75rem 0;
|
|
|
|
|
border-bottom: 0.1rem solid rgba(var(--secUser), 0.4);
|
|
|
|
|
|
2026-03-07 15:05:49 -05:00
|
|
|
.navbar-brand {
|
2026-03-23 01:06:14 -04:00
|
|
|
margin-left: 1rem;
|
2026-03-07 15:05:49 -05:00
|
|
|
h1 {
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-02 15:45:12 -05:00
|
|
|
.container-fluid {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 1rem;
|
2026-03-23 01:06:14 -04:00
|
|
|
margin-right: 0.5rem;
|
2026-03-02 15:45:12 -05:00
|
|
|
|
2026-04-05 16:00:52 -04:00
|
|
|
.navbar-user {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
|
|
|
|
|
.navbar-text { flex: none; } // prevent expansion; BYE abuts the spans
|
|
|
|
|
> form { flex-shrink: 0; order: -1; } // BYE left of spans
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> #id_cont_game { flex-shrink: 0; }
|
2026-03-02 15:45:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-text,
|
|
|
|
|
.navbar-link {
|
2026-03-07 15:05:49 -05:00
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
.navbar-label {
|
|
|
|
|
display: block;
|
|
|
|
|
color: rgba(var(--secUser), 0.7);
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-identity {
|
|
|
|
|
display: block;
|
|
|
|
|
color: rgba(var(--quaUser), 1);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
2026-03-02 15:45:12 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-group {
|
2026-04-04 13:49:48 -04:00
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
2026-03-02 15:45:12 -05:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
2026-04-04 13:49:48 -04:00
|
|
|
z-index: 50;
|
2026-03-02 15:45:12 -05:00
|
|
|
|
|
|
|
|
.form-control {
|
2026-04-04 13:49:48 -04:00
|
|
|
width: 24rem;
|
|
|
|
|
text-align: center;
|
2026-03-02 15:45:12 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-control {
|
|
|
|
|
background-color: rgba(var(--priUser), 1);
|
|
|
|
|
color: rgba(var(--secUser), 1);
|
|
|
|
|
border: 0.1rem solid rgba(var(--secUser), 0.5);
|
|
|
|
|
--_pad-v: 0.5rem;
|
|
|
|
|
padding: var(--_pad-v) 0.75rem;
|
|
|
|
|
border-radius: calc((var(--_pad-v) * 2 + 1em) / 3);
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
|
|
|
|
|
&.is-invalid {
|
|
|
|
|
border-color: rgba(var(--priRd), 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.form-control-lg {
|
|
|
|
|
--_pad-v: 0.75rem;
|
|
|
|
|
padding: var(--_pad-v) 1rem;
|
|
|
|
|
font-size: 1.125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.is-invalid ~ .invalid-feedback {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2026-03-06 16:39:05 -05:00
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
|
border-color: rgba(var(--terUser), 0.75);
|
|
|
|
|
box-shadow: 0 0 0.75rem rgba(var(--terUser), 0.5);
|
|
|
|
|
}
|
2026-03-02 15:45:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.invalid-feedback {
|
|
|
|
|
display: none;
|
|
|
|
|
color: rgba(var(--priRd), 1);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
margin-top: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alert {
|
|
|
|
|
padding: 0.75rem 1rem;
|
2026-04-04 13:49:48 -04:00
|
|
|
margin: 0.75rem;
|
2026-03-02 15:45:12 -05:00
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
border: 0.1rem solid rgba(var(--priYl), 0.5);
|
|
|
|
|
color: rgba(var(--priYl), 1);
|
|
|
|
|
|
|
|
|
|
&.alert-success {
|
|
|
|
|
border-color: rgba(var(--priGn), 0.5);
|
|
|
|
|
color: rgba(var(--priGn), 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.alert-warning {
|
|
|
|
|
border-color: rgba(var(--priOr), 0.5);
|
|
|
|
|
color: rgba(var(--priOr), 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
padding: 2rem 0;
|
|
|
|
|
|
|
|
|
|
.col-md-12 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.col-lg-6 {
|
2026-03-10 01:25:07 -04:00
|
|
|
max-width: inherit;
|
|
|
|
|
margin: 0 1rem;
|
|
|
|
|
|
2026-03-02 15:45:12 -05:00
|
|
|
h2 {
|
2026-03-10 01:25:07 -04:00
|
|
|
font-size: 3rem;
|
2026-04-01 22:11:43 -04:00
|
|
|
color: rgba(var(--secUser), 0.75);
|
2026-03-02 15:45:12 -05:00
|
|
|
margin-bottom: 1rem;
|
2026-03-10 01:25:07 -04:00
|
|
|
text-align: justify;
|
|
|
|
|
text-align-last: justify;
|
|
|
|
|
text-justify: inter-character;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
text-shadow:
|
2026-04-01 22:11:43 -04:00
|
|
|
// 1px 1px 0 rgba(255, 255, 255, 0.125), // highlight (up-left)
|
|
|
|
|
var(--title-shadow-offset) var(--title-shadow-offset) 0 rgba(0, 0, 0, 0.8) // shadow (down-right)
|
2026-03-10 01:25:07 -04:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
span {
|
2026-04-01 22:11:43 -04:00
|
|
|
color: rgba(var(--quaUser), 0.75);
|
2026-03-10 01:25:07 -04:00
|
|
|
}
|
2026-03-02 15:45:12 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-07 15:05:49 -05:00
|
|
|
}
|
|
|
|
|
|
2026-03-10 01:25:07 -04:00
|
|
|
@media (min-width: 1200px) {
|
|
|
|
|
body .container {
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 19:31:57 -04:00
|
|
|
@media (orientation: landscape) and (max-width: 1440px) {
|
2026-03-23 19:50:08 -04:00
|
|
|
$sidebar-w: 4rem;
|
2026-03-10 14:11:53 -04:00
|
|
|
|
2026-03-23 01:06:14 -04:00
|
|
|
// ── Sidebar layout: navbar ← left, footer → right ────────────────────────────
|
|
|
|
|
body {
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
2026-03-10 14:11:53 -04:00
|
|
|
|
2026-03-23 01:06:14 -04:00
|
|
|
// Navbar → fixed left sidebar
|
|
|
|
|
body .container .navbar {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
width: $sidebar-w;
|
|
|
|
|
padding: 0.5rem 0;
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
border-right: 0.1rem solid rgba(var(--secUser), 0.4);
|
|
|
|
|
background-color: rgba(var(--priUser), 1);
|
2026-04-05 22:01:23 -04:00
|
|
|
z-index: 100;
|
2026-03-23 01:06:14 -04:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.container-fluid {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
2026-03-23 19:31:57 -04:00
|
|
|
max-height: 700px;
|
2026-03-23 01:06:14 -04:00
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
2026-03-23 19:31:57 -04:00
|
|
|
gap: 1rem;
|
2026-03-23 01:06:14 -04:00
|
|
|
padding: 0 0.25rem;
|
2026-04-05 16:54:03 -04:00
|
|
|
margin: 0; // reset portrait margin-right: 0.5rem so container fills full sidebar width
|
2026-03-23 01:06:14 -04:00
|
|
|
|
2026-04-05 16:00:52 -04:00
|
|
|
> #id_cont_game { flex-shrink: 0; order: -1; } // cont-game above brand
|
|
|
|
|
|
|
|
|
|
.navbar-user {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
.navbar-text { margin: 0; } // cancel landscape margin:auto so BYE abuts
|
|
|
|
|
> form { order: 0; .btn { margin-top: 0; } } // abut spans
|
|
|
|
|
}
|
2026-03-10 14:11:53 -04:00
|
|
|
}
|
|
|
|
|
|
2026-03-23 01:06:14 -04:00
|
|
|
.navbar-brand h1 {
|
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
|
transform: rotate(180deg);
|
2026-03-23 19:31:57 -04:00
|
|
|
font-size: 1.2rem;
|
2026-03-23 01:06:14 -04:00
|
|
|
line-height: 1.2;
|
|
|
|
|
white-space: nowrap;
|
2026-03-23 19:31:57 -04:00
|
|
|
// margin-right: 3.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-brand {
|
|
|
|
|
order: 1; // brand at bottom
|
|
|
|
|
width: 100%;
|
2026-04-05 16:54:03 -04:00
|
|
|
margin-left: 0; // reset portrait margin-left: 1rem
|
2026-03-23 19:31:57 -04:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2026-03-23 01:06:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-link { display: none; }
|
|
|
|
|
|
2026-03-23 19:31:57 -04:00
|
|
|
.navbar-text {
|
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
font-size: 0.65rem;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
margin: auto 0;
|
|
|
|
|
|
|
|
|
|
.navbar-label { opacity: 0.7; }
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 01:06:14 -04:00
|
|
|
.btn-primary {
|
|
|
|
|
width: 3rem;
|
|
|
|
|
height: 3rem;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
border-width: 0.125rem;
|
2026-03-23 19:31:57 -04:00
|
|
|
// margin-left: 0.75rem;
|
2026-03-23 01:06:14 -04:00
|
|
|
}
|
|
|
|
|
|
2026-04-04 13:49:48 -04:00
|
|
|
// Login form: offset from fixed sidebars in landscape
|
2026-03-23 20:07:59 -04:00
|
|
|
.input-group {
|
|
|
|
|
left: $sidebar-w;
|
|
|
|
|
right: $sidebar-w;
|
|
|
|
|
|
|
|
|
|
.navbar-text {
|
|
|
|
|
writing-mode: horizontal-tb;
|
|
|
|
|
transform: none;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
white-space: normal;
|
|
|
|
|
margin: 0 0 0.25rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-23 01:06:14 -04:00
|
|
|
}
|
|
|
|
|
|
2026-03-28 21:23:50 -04:00
|
|
|
// Container: fill center, compensate for fixed sidebars on both sides
|
2026-03-23 01:06:14 -04:00
|
|
|
body .container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
margin-left: $sidebar-w;
|
|
|
|
|
margin-right: $sidebar-w;
|
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Header row: compact in landscape
|
|
|
|
|
body .container .row {
|
|
|
|
|
padding: 0.25rem 0;
|
|
|
|
|
|
|
|
|
|
.col-lg-6 h2 {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
margin: 0 0 0.25rem;
|
|
|
|
|
letter-spacing: 0.4em;
|
|
|
|
|
text-align: center;
|
2026-03-28 21:23:50 -04:00
|
|
|
text-align-last: left;
|
2026-03-10 14:11:53 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 01:06:14 -04:00
|
|
|
// Footer → fixed right sidebar (mirrors navbar approach — explicit right boundary)
|
|
|
|
|
// Use body #id_footer (specificity 0,1,0,1) to beat base #id_footer (0,1,0,0)
|
|
|
|
|
// which compiles later in the output and would otherwise override height: 100vh.
|
|
|
|
|
body #id_footer {
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: $sidebar-w;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-top: none;
|
|
|
|
|
border-left: 0.1rem solid rgba(var(--secUser), 0.3);
|
|
|
|
|
padding: 1rem 0;
|
|
|
|
|
gap: 0;
|
2026-04-06 00:48:25 -04:00
|
|
|
z-index: 100;
|
2026-03-23 01:06:14 -04:00
|
|
|
|
|
|
|
|
#id_footer_nav {
|
2026-03-24 00:49:04 -04:00
|
|
|
flex-direction: column-reverse;
|
2026-03-23 01:06:14 -04:00
|
|
|
width: auto;
|
|
|
|
|
max-width: none;
|
2026-03-23 19:31:57 -04:00
|
|
|
gap: 3rem;
|
2026-03-10 14:11:53 -04:00
|
|
|
|
2026-03-23 01:06:14 -04:00
|
|
|
a {
|
|
|
|
|
font-size: 1.75rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2026-03-10 14:11:53 -04:00
|
|
|
}
|
2026-03-23 01:06:14 -04:00
|
|
|
|
2026-03-23 19:31:57 -04:00
|
|
|
.footer-container {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0.75rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 0.55rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
color: rgba(var(--secUser), 0.5);
|
|
|
|
|
|
|
|
|
|
br { display: block; }
|
|
|
|
|
}
|
2026-03-10 14:11:53 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (orientation: portrait) and (max-width: 500px) {
|
|
|
|
|
body .container {
|
|
|
|
|
.navbar {
|
Django Channels role-select sprint: turn_changed, roles_revealed, role_select_start consumer handlers; WS URL changed from room_slug to room_id UUID; TableSeat model - room, gamer, slot_number, role, role_revealed, seat_position fields; Room.table_status field with ROLE_SELECT, SIG_SELECT, IN_GAME choices; migration 0006_table_status_and_table_seat; pick_roles and select_role views; _role_select_context helper; _notify_turn_changed, _notify_roles_revealed, _notify_role_select_start notifiers; all gate-mutation views now call _notify_gate_update; ChannelsFunctionalTest base class with serve_static, screenshot, dump helpers; SQLite TEST NAME set to file path for ChannelsLiveServerTestCase; InMemoryChannelLayer added to test CHANNEL_LAYERS settings; FT 5 and FT 6 now passing - active seat arc and turn advance via WS, no page refresh; room.js, gatekeeper.js, role-select.js added to apps/epic/static; applets.js, game-kit.js, dashboard.js, wallet.js relocated to app-scoped static dirs; room.html: hex table, table-seat arcs, card-stack, inventory panel, role-card hand, WS scripts; _room.scss: room-shell flex layout, .table-hex polygon clip-path, .table-seat and .seat-card-arc, .card-stack eligible/ineligible states, .card flip animation, .inv-role-card stacked hand, .role-select-backdrop; gear btn and room menu always position: fixed; 375 tests, 0 skipped
2026-03-17 00:24:23 -04:00
|
|
|
padding: 0 0 0.25rem 0;
|
2026-03-23 19:31:57 -04:00
|
|
|
|
2026-03-10 14:11:53 -04:00
|
|
|
.navbar-brand h1 {
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary {
|
2026-03-23 19:31:57 -04:00
|
|
|
width: 3rem;
|
|
|
|
|
height: 3rem;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
border-width: 0.125rem;
|
2026-03-10 14:11:53 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row .col-lg-6 h2 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-align-last: center;
|
2026-03-14 02:03:44 -04:00
|
|
|
letter-spacing: 0.33em;
|
Django Channels role-select sprint: turn_changed, roles_revealed, role_select_start consumer handlers; WS URL changed from room_slug to room_id UUID; TableSeat model - room, gamer, slot_number, role, role_revealed, seat_position fields; Room.table_status field with ROLE_SELECT, SIG_SELECT, IN_GAME choices; migration 0006_table_status_and_table_seat; pick_roles and select_role views; _role_select_context helper; _notify_turn_changed, _notify_roles_revealed, _notify_role_select_start notifiers; all gate-mutation views now call _notify_gate_update; ChannelsFunctionalTest base class with serve_static, screenshot, dump helpers; SQLite TEST NAME set to file path for ChannelsLiveServerTestCase; InMemoryChannelLayer added to test CHANNEL_LAYERS settings; FT 5 and FT 6 now passing - active seat arc and turn advance via WS, no page refresh; room.js, gatekeeper.js, role-select.js added to apps/epic/static; applets.js, game-kit.js, dashboard.js, wallet.js relocated to app-scoped static dirs; room.html: hex table, table-seat arcs, card-stack, inventory panel, role-card hand, WS scripts; _room.scss: room-shell flex layout, .table-hex polygon clip-path, .table-seat and .seat-card-arc, .card-stack eligible/ineligible states, .card flip animation, .inv-role-card stacked hand, .role-select-backdrop; gear btn and room menu always position: fixed; 375 tests, 0 skipped
2026-03-17 00:24:23 -04:00
|
|
|
margin: 0;
|
2026-03-11 00:58:24 -04:00
|
|
|
font-size: 2rem;
|
2026-03-14 02:03:44 -04:00
|
|
|
|
|
|
|
|
&#id_dash_wallet {
|
|
|
|
|
letter-spacing: 0.25em;
|
|
|
|
|
}
|
2026-03-10 14:11:53 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-07 15:05:49 -05:00
|
|
|
#id_footer {
|
|
|
|
|
flex-shrink: 0;
|
Django Channels role-select sprint: turn_changed, roles_revealed, role_select_start consumer handlers; WS URL changed from room_slug to room_id UUID; TableSeat model - room, gamer, slot_number, role, role_revealed, seat_position fields; Room.table_status field with ROLE_SELECT, SIG_SELECT, IN_GAME choices; migration 0006_table_status_and_table_seat; pick_roles and select_role views; _role_select_context helper; _notify_turn_changed, _notify_roles_revealed, _notify_role_select_start notifiers; all gate-mutation views now call _notify_gate_update; ChannelsFunctionalTest base class with serve_static, screenshot, dump helpers; SQLite TEST NAME set to file path for ChannelsLiveServerTestCase; InMemoryChannelLayer added to test CHANNEL_LAYERS settings; FT 5 and FT 6 now passing - active seat arc and turn advance via WS, no page refresh; room.js, gatekeeper.js, role-select.js added to apps/epic/static; applets.js, game-kit.js, dashboard.js, wallet.js relocated to app-scoped static dirs; room.html: hex table, table-seat arcs, card-stack, inventory panel, role-card hand, WS scripts; _room.scss: room-shell flex layout, .table-hex polygon clip-path, .table-seat and .seat-card-arc, .card-stack eligible/ineligible states, .card flip animation, .inv-role-card stacked hand, .role-select-backdrop; gear btn and room menu always position: fixed; 375 tests, 0 skipped
2026-03-17 00:24:23 -04:00
|
|
|
height: 6rem;
|
2026-03-07 15:05:49 -05:00
|
|
|
display: flex;
|
2026-03-09 14:40:34 -04:00
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.5rem;
|
2026-03-07 15:05:49 -05:00
|
|
|
align-items: center;
|
2026-03-09 14:40:34 -04:00
|
|
|
padding: 1rem 1rem;
|
2026-03-07 15:05:49 -05:00
|
|
|
border-top: 0.1rem solid rgba(var(--secUser), 0.3);
|
2026-03-22 14:36:02 -04:00
|
|
|
// background: linear-gradient(
|
|
|
|
|
// to top,
|
|
|
|
|
// rgba(var(--priUser), 1) 25%,
|
|
|
|
|
// transparent 100%
|
|
|
|
|
// );
|
2026-03-09 14:40:34 -04:00
|
|
|
|
|
|
|
|
#id_footer_nav {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
width: 80%;
|
|
|
|
|
max-width: 500px;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
font-size: 1.75rem;
|
2026-03-09 22:42:30 -04:00
|
|
|
color: rgba(var(--secUser), 0.6);
|
2026-03-09 14:57:39 -04:00
|
|
|
text-shadow:
|
2026-03-09 22:42:30 -04:00
|
|
|
0 0 0.25rem rgba(0, 0, 0, 0.25),
|
2026-03-09 14:57:39 -04:00
|
|
|
;
|
|
|
|
|
|
2026-03-09 22:42:30 -04:00
|
|
|
&.active {
|
|
|
|
|
color: rgba(var(--quaUser), 1);
|
|
|
|
|
text-shadow:
|
|
|
|
|
0 0 0.5rem rgba(0, 0, 0, 0.5),
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-09 14:40:34 -04:00
|
|
|
&:hover {
|
|
|
|
|
color: rgba(var(--quaUser), 1);
|
2026-03-09 14:57:39 -04:00
|
|
|
text-shadow:
|
|
|
|
|
0 0 1rem rgba(0, 0, 0, 0.25),
|
|
|
|
|
0 0 0.5rem rgba(var(--ninUser), 0.25)
|
|
|
|
|
;
|
|
|
|
|
|
2026-03-09 14:40:34 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-container {
|
2026-03-23 19:31:57 -04:00
|
|
|
br { display: none; }
|
|
|
|
|
|
2026-03-09 14:40:34 -04:00
|
|
|
small {
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-23 19:31:57 -04:00
|
|
|
}
|
|
|
|
|
|
2026-03-24 18:40:16 -04:00
|
|
|
.forthcoming {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 19:31:57 -04:00
|
|
|
#id_guard_portal {
|
|
|
|
|
display: none;
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 10000;
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
background-color: rgba(var(--tooltip-bg), 0.5);
|
|
|
|
|
backdrop-filter: blur(6px);
|
|
|
|
|
border: 0.1rem solid rgba(var(--secUser), 0.4);
|
|
|
|
|
box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.4);
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.guard-message {
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
color: rgba(var(--secUser), 0.9);
|
|
|
|
|
text-align: center;
|
2026-04-05 01:23:20 -04:00
|
|
|
white-space: nowrap;
|
2026-03-23 19:31:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.guard-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
2026-03-02 15:45:12 -05:00
|
|
|
}
|