2026-05-09 00:14:14 -04:00
|
|
|
|
// ── Fluid root rem: 1rem scales with viewport ─────────────────────────────
|
|
|
|
|
|
// All sidebar/h2/font sizes downstream are in rem, so redefining root
|
|
|
|
|
|
// font-size against `vmin` (smaller of vh/vw) gives us a single sliding
|
|
|
|
|
|
// scale that's invariant under phone rotation: rotating swaps width/height
|
|
|
|
|
|
// but vmin stays the same → 1rem stays the same → navbar/footer/h2 hold
|
|
|
|
|
|
// their size. Floor 14px on cramped viewports, ceiling 22px on huge ones.
|
|
|
|
|
|
// 2.4vmin hits 16px (browser default) at vmin=667 (iPhone SE landscape).
|
|
|
|
|
|
html {
|
|
|
|
|
|
font-size: clamp(14px, 2.4vmin, 22px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Layout custom properties — single source of truth for the landscape
|
|
|
|
|
|
// sidebar width (navbar/footer) + the rotated-h2 column slot to the right
|
|
|
|
|
|
// of the navbar. Container margin-left in landscape adds these so applets
|
|
|
|
|
|
// can't bleed under the wordmark.
|
|
|
|
|
|
:root {
|
|
|
|
|
|
--sidebar-w: 5rem;
|
|
|
|
|
|
--h2-col-w: 3rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
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-04-06 01:41:18 -04:00
|
|
|
|
|
2026-03-07 15:05:49 -05:00
|
|
|
|
|
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;
|
2026-05-08 11:53:05 -04:00
|
|
|
|
gap: 0.25rem;
|
2026-04-04 13:49:48 -04:00
|
|
|
|
z-index: 50;
|
2026-03-02 15:45:12 -05:00
|
|
|
|
|
2026-05-08 11:53:05 -04:00
|
|
|
|
// Match .sky-field label — small, gold, uppercase, tracked.
|
|
|
|
|
|
label {
|
|
|
|
|
|
font-size: 0.6rem;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
|
color: rgba(var(--quaUser), 0.8);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
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-05-09 00:14:14 -04:00
|
|
|
|
|
|
|
|
|
|
// Two-span title: <span>BILL</span><span>POST</span>. First
|
|
|
|
|
|
// word (always 4 letters: BILL/DASH/GAME/etc.) gets 45% of
|
|
|
|
|
|
// the title width; the variable second word fills the
|
|
|
|
|
|
// remaining 55%. Letters within each span spread via
|
|
|
|
|
|
// text-align: justify + text-justify: inter-character. The
|
|
|
|
|
|
// first-span colour shifts to --quaUser so the two-tone
|
|
|
|
|
|
// heading reads "Bill | Post" / "Dash | Sky".
|
2026-03-02 15:45:12 -05:00
|
|
|
|
h2 {
|
2026-05-09 00:14:14 -04:00
|
|
|
|
display: flex;
|
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-transform: uppercase;
|
|
|
|
|
|
text-shadow:
|
2026-05-09 00:14:14 -04:00
|
|
|
|
var(--title-shadow-offset) var(--title-shadow-offset) 0 rgba(0, 0, 0, 0.8)
|
2026-03-10 01:25:07 -04:00
|
|
|
|
;
|
|
|
|
|
|
|
2026-05-09 14:01:16 -04:00
|
|
|
|
// Each word-span hosts per-letter <span>s injected by the
|
|
|
|
|
|
// h2-letter-split script in base.html — display: flex +
|
|
|
|
|
|
// justify-content: space-between distributes those letters
|
|
|
|
|
|
// across the slot's width (or height in landscape's
|
|
|
|
|
|
// writing-mode: vertical-rl). text-justify: inter-character
|
|
|
|
|
|
// would do the same in pure CSS, but iOS Safari + Firefox
|
|
|
|
|
|
// silently fall back to inter-word for Latin scripts, which
|
|
|
|
|
|
// can't split a single word — letters end up clustered at
|
|
|
|
|
|
// the slot's start with empty space trailing. The flex
|
|
|
|
|
|
// approach works everywhere.
|
2026-05-09 00:14:14 -04:00
|
|
|
|
> span {
|
2026-05-09 14:01:16 -04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
2026-05-09 00:18:57 -04:00
|
|
|
|
box-sizing: border-box;
|
2026-05-09 00:14:14 -04:00
|
|
|
|
}
|
2026-05-09 00:18:57 -04:00
|
|
|
|
// Padding-inline (logical) creates the natural visual gap
|
|
|
|
|
|
// between the two words at the 45/55 boundary — works for
|
|
|
|
|
|
// both portrait (horizontal) AND the landscape rotated
|
|
|
|
|
|
// wordmark (vertical-rl writing mode).
|
2026-05-09 00:14:14 -04:00
|
|
|
|
> span:first-child {
|
|
|
|
|
|
flex: 0 0 45%;
|
2026-05-09 00:18:57 -04:00
|
|
|
|
padding-inline-end: 0.4em;
|
2026-04-01 22:11:43 -04:00
|
|
|
|
color: rgba(var(--quaUser), 0.75);
|
2026-03-10 01:25:07 -04:00
|
|
|
|
}
|
2026-05-09 00:14:14 -04:00
|
|
|
|
> span:last-child {
|
|
|
|
|
|
flex: 0 0 55%;
|
2026-05-09 00:18:57 -04:00
|
|
|
|
padding-inline-start: 0.4em;
|
2026-05-09 00:14:14 -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-04-06 01:30:31 -04:00
|
|
|
|
@media (orientation: landscape) {
|
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-05-09 00:14:14 -04:00
|
|
|
|
// Navbar → fixed left sidebar (width derives from --sidebar-w which is
|
|
|
|
|
|
// fluid via the rem-redefine above; no per-breakpoint width jumps).
|
2026-03-23 01:06:14 -04:00
|
|
|
|
body .container .navbar {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
height: 100vh;
|
2026-05-09 00:14:14 -04:00
|
|
|
|
width: var(--sidebar-w);
|
2026-03-23 01:06:14 -04:00
|
|
|
|
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-04-06 20:11:24 -04:00
|
|
|
|
// .btn-primary {
|
|
|
|
|
|
// width: 4rem;
|
|
|
|
|
|
// height: 4rem;
|
|
|
|
|
|
// font-size: 0.875rem;
|
|
|
|
|
|
// border-width: 0.21rem;
|
|
|
|
|
|
// }
|
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 {
|
2026-05-09 00:14:14 -04:00
|
|
|
|
left: var(--sidebar-w);
|
|
|
|
|
|
right: var(--sidebar-w);
|
2026-03-23 20:07:59 -04:00
|
|
|
|
|
|
|
|
|
|
.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-05-09 00:14:14 -04:00
|
|
|
|
// Container: fill center, compensate for fixed sidebars on both sides
|
|
|
|
|
|
// AND for the rotated-h2 column on the left (so applets can't bleed
|
|
|
|
|
|
// under the wordmark — true aperture clipping).
|
|
|
|
|
|
// max-width: none overrides the @media (min-width: 1200px) rule above
|
|
|
|
|
|
// so the container fills all available space between the sidebars.
|
2026-03-23 01:06:14 -04:00
|
|
|
|
body .container {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
min-width: 0;
|
2026-04-06 01:30:31 -04:00
|
|
|
|
max-width: none;
|
2026-05-09 00:14:14 -04:00
|
|
|
|
margin-left: calc(var(--sidebar-w) + var(--h2-col-w));
|
|
|
|
|
|
margin-right: var(--sidebar-w);
|
2026-03-23 01:06:14 -04:00
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-09 00:14:14 -04:00
|
|
|
|
// Header row: h2 rotates into the dedicated --h2-col-w slot just right
|
|
|
|
|
|
// of the navbar. position:fixed takes h2 out of flow; .row collapses
|
|
|
|
|
|
// to zero height automatically. Resets portrait flex so the rotated
|
|
|
|
|
|
// wordmark renders as one continuous title (not split 45/55 here).
|
2026-03-23 01:06:14 -04:00
|
|
|
|
body .container .row {
|
2026-04-06 20:11:24 -04:00
|
|
|
|
padding: 0;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
body .container .row .col-lg-6 h2 {
|
|
|
|
|
|
position: fixed;
|
2026-05-09 00:14:14 -04:00
|
|
|
|
left: var(--sidebar-w);
|
|
|
|
|
|
width: var(--h2-col-w);
|
2026-04-06 20:11:24 -04:00
|
|
|
|
top: 50%;
|
2026-05-09 00:18:57 -04:00
|
|
|
|
height: 80vh; // explicit height so the flex 45/55 % basis resolves
|
2026-04-06 20:11:24 -04:00
|
|
|
|
transform: translateY(-50%) rotate(180deg);
|
2026-05-09 00:18:57 -04:00
|
|
|
|
writing-mode: vertical-rl; // inline axis becomes top-to-bottom; flex stacks on it
|
2026-05-09 14:01:16 -04:00
|
|
|
|
// Per-letter flex spread (justify-content: space-between on each word
|
|
|
|
|
|
// span) fills the slot regardless of font-size, so we only need to
|
|
|
|
|
|
// cap font-size by vh so each letter glyph stays smaller than slot /
|
|
|
|
|
|
// letter-count. Worst case: HOWDY STRANGER (8ch second word) in 55%
|
|
|
|
|
|
// of 80vh on a 375-tall iPhone SE landscape → 165px slot ÷ 8 ≈ 20px
|
|
|
|
|
|
// max glyph height; clamp's 4.4vh + 1.2rem floor gives 16.5–16.8px
|
|
|
|
|
|
// at that viewport, well under 20.
|
|
|
|
|
|
font-size: clamp(1.2rem, 4.4vh, 2.75rem);
|
2026-04-06 20:11:24 -04:00
|
|
|
|
margin: 0;
|
|
|
|
|
|
z-index: 85;
|
|
|
|
|
|
pointer-events: none;
|
2026-05-09 00:18:57 -04:00
|
|
|
|
// Inherits display: flex + the per-span flex 45/55 + padding-inline
|
|
|
|
|
|
// boundary from the portrait base. With writing-mode: vertical-rl the
|
|
|
|
|
|
// flex axis runs vertically, so first-span (BILL) takes 45% of the
|
|
|
|
|
|
// height (becomes bottom 45% after rotate(180deg)) and second-span
|
|
|
|
|
|
// (POST) takes the upper 55%. padding-inline-end resolves to the
|
|
|
|
|
|
// bottom edge of the first span — natural break between words.
|
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;
|
2026-05-09 00:14:14 -04:00
|
|
|
|
width: var(--sidebar-w);
|
2026-03-23 01:06:14 -04:00
|
|
|
|
height: 100vh;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
border-top: none;
|
|
|
|
|
|
border-left: 0.1rem solid rgba(var(--secUser), 0.3);
|
2026-04-06 03:02:37 -04:00
|
|
|
|
background-color: rgba(var(--priUser), 1); // opaque: masks tray sliding behind it
|
2026-03-23 01:06:14 -04:00
|
|
|
|
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-04-06 20:11:24 -04:00
|
|
|
|
gap: 1.5rem !important;
|
|
|
|
|
|
margin-bottom: 4rem;
|
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-05-09 00:35:26 -04:00
|
|
|
|
// ©2026 Dis Co. — single-line vertical strip at the right edge of
|
|
|
|
|
|
// the right sidebar (= the very right edge of the viewport in
|
|
|
|
|
|
// landscape). Reads bottom-to-top via writing-mode: vertical-rl +
|
|
|
|
|
|
// rotate(180deg) — same pattern as the navbar's rotated brand
|
|
|
|
|
|
// wordmark. Tucks into the empty 0.875rem gutter between the
|
|
|
|
|
|
// viewport edge and the centred icon/btn column, no overlap.
|
2026-03-23 19:31:57 -04:00
|
|
|
|
.footer-container {
|
|
|
|
|
|
position: absolute;
|
2026-05-09 00:35:26 -04:00
|
|
|
|
right: 0.125rem;
|
|
|
|
|
|
top: auto;
|
|
|
|
|
|
line-height: 1 !important;
|
2026-04-06 03:02:37 -04:00
|
|
|
|
color: rgba(var(--secUser), 1);
|
2026-05-09 00:35:26 -04:00
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
|
white-space: nowrap;
|
2026-03-23 19:31:57 -04:00
|
|
|
|
|
2026-05-09 00:35:26 -04:00
|
|
|
|
br { display: none; }
|
2026-04-06 20:11:24 -04:00
|
|
|
|
|
|
|
|
|
|
small {
|
|
|
|
|
|
font-size: 0.75rem !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-09 00:14:14 -04:00
|
|
|
|
// Footer typography refinements that only kick in once the viewport is
|
|
|
|
|
|
// wide enough to clear the cramped phone-landscape regime. Sidebar
|
|
|
|
|
|
// dimensions themselves are now fluid via rem and don't need a per-
|
|
|
|
|
|
// breakpoint width override (the old ≥1800px doubling block is gone).
|
2026-04-06 20:11:24 -04:00
|
|
|
|
@media (orientation: landscape) and (min-width: 700px) {
|
|
|
|
|
|
body #id_footer {
|
|
|
|
|
|
#id_footer_nav {
|
|
|
|
|
|
gap: 3rem !important;
|
|
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
|
font-size: 1.75rem;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer-container {
|
|
|
|
|
|
line-height: 1;
|
2026-05-09 00:35:26 -04:00
|
|
|
|
// margin-top vestige of the absolute-top-anchored layout —
|
|
|
|
|
|
// dropped now that the rotated text is bottom-anchored.
|
2026-04-06 20:11:24 -04:00
|
|
|
|
|
|
|
|
|
|
small {
|
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
}
|
2026-03-23 19:31:57 -04:00
|
|
|
|
}
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-09 14:01:16 -04:00
|
|
|
|
// Per-letter flex spread fills each 45/55 slot regardless of font-size,
|
|
|
|
|
|
// so we just need to cap the glyph size by viewport width to keep the
|
|
|
|
|
|
// worst-case title (HOWDY STRANGER, 8ch second word) from clipping at
|
|
|
|
|
|
// tiny mobile widths. clamp picks max(1.3rem, 5vw) capped at 2rem —
|
|
|
|
|
|
// at 320w → 18.2px, 390w → 19.5px, 430w → 21.5px.
|
|
|
|
|
|
// padding-inline boundary bumped from 0.4em → 0.6em (each side) so the
|
|
|
|
|
|
// last letter of word 1 (H) and first letter of word 2 (B) don't run
|
|
|
|
|
|
// together at the cramped portrait font-size.
|
2026-03-10 14:11:53 -04:00
|
|
|
|
.row .col-lg-6 h2 {
|
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-05-09 14:01:16 -04:00
|
|
|
|
font-size: clamp(1.3rem, 5vw, 2rem);
|
2026-03-14 02:03:44 -04:00
|
|
|
|
|
2026-05-09 14:01:16 -04:00
|
|
|
|
> span:first-child { padding-inline-end: 0.6em; }
|
|
|
|
|
|
> span:last-child { padding-inline-start: 0.6em; }
|
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 {
|
2026-04-06 03:02:37 -04:00
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
opacity: 1;
|
2026-03-09 14:40:34 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|
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-04-28 01:30:02 -04:00
|
|
|
|
// Ordinal superscript: 21st, 2nd, 3rd etc. — matches .tt-ord but globally available.
|
|
|
|
|
|
.ord {
|
|
|
|
|
|
font-size: 0.6em;
|
|
|
|
|
|
vertical-align: 0.25em;
|
|
|
|
|
|
line-height: 0;
|
|
|
|
|
|
margin-left: -0.1em;
|
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
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;
|
2026-04-27 23:52:22 -04:00
|
|
|
|
background-color: rgba(var(--tooltip-bg), 0.75);
|
2026-03-23 19:31:57 -04:00
|
|
|
|
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-04-28 01:30:02 -04:00
|
|
|
|
}
|
2026-04-28 01:54:57 -04:00
|
|
|
|
|
|
|
|
|
|
.card-ref {
|
|
|
|
|
|
color: rgba(var(--terUser), 1) !important;
|
|
|
|
|
|
font-weight: 600 !important;
|
|
|
|
|
|
}
|