legacy-arrflix/web-overrides/theater-design/theater-fullsize.html
s8n 034dbe68c0
Some checks are pending
secret-scan / gitleaks (HEAD + history) (push) Waiting to run
secret-scan / detect-secrets (entropy + cross-tool) (push) Waiting to run
secret-scan / summary (push) Blocked by required conditions
docs(theater): import design picker assets from /tmp
4-variant ARRFLIX login picker served at localhost:666 (variants 01 The
Theater · 02 The Marquee · 03 The Cinema · 04 The Noir). Variant 01 was
selected. Includes theater-fullsize.html (1920x1080 mockup), 470x170
landscape arrflix-logo (PNG + b64), poster-bg backdrop, and tv_theater_port.py
CSS-block patcher reference for the later prod deploy.

Persisted from /tmp to survive reboot; iteration continues in this dir
under a 4-agent crew (Designer / Coder / Chromium / Inspector).
2026-05-12 17:17:38 +01:00

147 lines
4.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ARRFLIX Login — The Theater (fullsize target)</title>
<style>
:root {
--red: #E50914;
--font-display: "Bebas Neue", "Anton", Impact, "Haettenschweiler", "Liberation Sans Narrow", "Arial Narrow Bold", "Helvetica Neue Condensed Black", "DejaVu Sans Condensed", sans-serif;
--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, "Liberation Sans", Arial, sans-serif;
--font-mono: "SF Mono", "Monaco", "Cascadia Code", "JetBrains Mono", "Roboto Mono", "DejaVu Sans Mono", "Liberation Mono", Consolas, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
background: #000;
color: #fff;
font-family: var(--font-body);
width: 1920px;
height: 1080px;
overflow: hidden;
-webkit-font-smoothing: antialiased;
}
.login-page.v1 {
width: 1920px;
height: 1080px;
position: relative;
background: url("poster-bg.jpg") center / cover no-repeat, #000;
overflow: hidden;
}
.v1::before {
content: ""; position: absolute; inset: 0; z-index: 1;
background:
radial-gradient(ellipse 70% 60% at center,
rgba(0,0,0,0) 0%,
rgba(0,0,0,0.55) 55%,
rgba(0,0,0,0.92) 100%),
linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 75%, rgba(0,0,0,0.7) 100%);
pointer-events: none;
}
.v1 .topbar {
position: relative; z-index: 3;
height: 88px;
display: flex; align-items: center; justify-content: center;
background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
}
.v1 .topbar img { width: 156px; height: auto; display: block; }
.v1 .stage {
position: relative; z-index: 2;
display: flex; align-items: center; justify-content: center;
height: calc(100% - 88px);
}
.v1 .card {
background: rgba(0, 0, 0, 0.78);
border: 1px solid rgba(255,255,255,0.06);
width: 540px;
padding: 56px 56px 44px;
backdrop-filter: blur(8px);
}
.v1 .card h1 {
font-family: var(--font-display);
font-size: 48px;
color: #fff;
letter-spacing: 0.03em;
margin-bottom: 36px;
line-height: 1;
text-align: center;
font-weight: 400;
}
.v1 .field { margin-bottom: 24px; }
.v1 .field label {
display: block;
font-family: var(--font-mono);
font-size: 11px;
color: rgba(255,255,255,0.55);
text-transform: uppercase;
letter-spacing: 0.22em;
margin-bottom: 10px;
font-weight: 600;
}
.v1 .field input {
width: 100%;
background: transparent;
border: none;
border-bottom: 1px solid rgba(255,255,255,0.18);
padding: 12px 0 14px;
font-size: 18px;
color: #fff;
outline: none;
}
.v1 .row {
display: flex; align-items: center; justify-content: center;
margin: 30px 0;
}
.v1 .check {
width: 20px; height: 20px;
background: var(--red);
position: relative;
margin-right: 12px;
border-radius: 2px;
}
.v1 .check::after {
content: ""; position: absolute;
top: 5px; left: 4px; width: 11px; height: 5px;
border-left: 2px solid #fff;
border-bottom: 2px solid #fff;
transform: rotate(-45deg);
}
.v1 .remember-label { font-size: 14px; color: #ccc; }
.v1 .btn {
width: 100%;
background: var(--red);
color: #fff;
font-size: 17px;
font-weight: 700;
padding: 18px;
border: none;
cursor: pointer;
border-radius: 4px;
letter-spacing: 0.04em;
}
.v1 .disclaimer {
margin-top: 28px;
font-size: 12px;
color: rgba(255,255,255,0.5);
text-align: center;
letter-spacing: 0.04em;
}
input { caret-color: transparent; pointer-events: none; }
button { pointer-events: none; }
</style>
</head>
<body>
<div class="login-page v1">
<div class="topbar"><img src="arrflix-logo.png" alt="ARRFLIX"></div>
<div class="stage">
<div class="card">
<h1>Sign In</h1>
<div class="field"><label>User</label><input type="text"></div>
<div class="field"><label>Password</label><input type="password"></div>
<div class="row"><div class="check"></div><span class="remember-label">Remember me</span></div>
<button class="btn">Sign In</button>
<div class="disclaimer">Private invite only</div>
</div>
</div>
</div>
</body>
</html>