518 lines
20 KiB
CSS
518 lines
20 KiB
CSS
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
|
|
@import "tailwindcss";
|
|
|
|
/* ADO2 실제 프로덕트 토큰 — ado2.o2osolution.ai/assets/index.*.css 에서 추출 (2026-08-12) */
|
|
:root {
|
|
--color-bg-darker: #001a1c;
|
|
--color-bg-dark: #002224;
|
|
--color-bg-card: #003538;
|
|
--color-bg-card-inner: #004548;
|
|
--color-mint: #a6ffea;
|
|
--color-mint-hover: #8affda;
|
|
--color-mint-10: rgba(166, 255, 234, 0.1);
|
|
--color-mint-20: rgba(166, 255, 234, 0.2);
|
|
--color-mint-30: rgba(166, 255, 234, 0.3);
|
|
--color-mint-glow: rgba(166, 255, 234, 0.6);
|
|
--color-purple: #a682ff;
|
|
--color-purple-hover: #9570f0;
|
|
--color-purple-glow: rgba(166, 130, 255, 0.2);
|
|
--color-text-white: #ffffff;
|
|
--color-text-gray-300: #d1d5db;
|
|
--color-text-gray-400: #9ca3af;
|
|
--color-text-gray-500: #6b7280;
|
|
--color-border-white-5: rgba(255, 255, 255, 0.05);
|
|
--color-border-white-10: rgba(255, 255, 255, 0.1);
|
|
--color-border-gray-600: #4b5563;
|
|
--color-border-gray-700: #374151;
|
|
|
|
--radius-sm: 0.5rem;
|
|
--radius-md: 0.75rem;
|
|
--radius-xl: 1.25rem;
|
|
--radius-2xl: 1rem;
|
|
--radius-3xl: 1.5rem;
|
|
--radius-full: 9999px;
|
|
|
|
--text-xs: 0.75rem;
|
|
--text-sm: 0.875rem;
|
|
--text-base: 1rem;
|
|
--text-lg: 1.125rem;
|
|
--text-xl: 1.25rem;
|
|
--text-2xl: 1.5rem;
|
|
--text-3xl: 1.875rem;
|
|
--text-4xl: 2.25rem;
|
|
|
|
--shadow-mint-glow: 0 0 10px rgba(166, 255, 234, 0.6);
|
|
--shadow-purple: 0 10px 15px -3px rgba(166, 130, 255, 0.2);
|
|
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
|
|
--spacing-page: 1.5rem;
|
|
--spacing-page-md: 2rem;
|
|
--transition-fast: 0.15s;
|
|
--transition-normal: 0.2s;
|
|
--transition-slow: 0.3s;
|
|
|
|
/* 기존 코드 호환 별칭 */
|
|
--bg-0: var(--color-bg-darker);
|
|
--bg-1: var(--color-bg-darker);
|
|
--bg-2: var(--color-bg-dark);
|
|
--bg-3: var(--color-bg-card);
|
|
--bg-4: var(--color-bg-card-inner);
|
|
--stroke-1: var(--color-border-gray-700);
|
|
--stroke-2: var(--color-border-white-5);
|
|
--ado-mint: var(--color-mint);
|
|
--ado-mint-2: var(--color-mint);
|
|
--ado-mint-11: var(--color-mint-10);
|
|
--ado-purple: var(--color-purple);
|
|
--ado-purple-light: var(--color-purple);
|
|
--text-white: var(--color-text-white);
|
|
--text-mint-soft: var(--color-text-gray-300);
|
|
--text-mint-mid: var(--color-text-gray-300);
|
|
--text-teal-1: var(--color-text-gray-400);
|
|
--text-teal-2: var(--color-text-gray-400);
|
|
--text-teal-3: var(--color-text-gray-500);
|
|
--text-mute-1: var(--color-text-gray-400);
|
|
--text-onpurple: var(--color-text-white);
|
|
--r-xs: 0.25rem; --r-sm: var(--radius-sm); --r-md: var(--radius-md);
|
|
--r-lg: var(--radius-3xl); --r-pill: var(--radius-full);
|
|
--s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px; --s-6: 32px; --s-7: 48px;
|
|
--font: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont,
|
|
"Helvetica Neue", "Segoe UI", system-ui, sans-serif;
|
|
--shadow-card: var(--shadow-xl);
|
|
}
|
|
|
|
html, body {
|
|
background: var(--color-bg-darker);
|
|
color: var(--color-text-white);
|
|
font-family: var(--font);
|
|
font-size: 16px;
|
|
}
|
|
body { margin: 0; -webkit-font-smoothing: antialiased; letter-spacing: -0.006em; }
|
|
* { box-sizing: border-box; }
|
|
|
|
/* ── 레이아웃: 사이드바 (프로덕트 .sidebar / .sidebar-item) ── */
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 240px;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--color-bg-dark);
|
|
border-right: 1px solid var(--color-border-white-5);
|
|
z-index: 50;
|
|
}
|
|
.sidebar-logo { padding: 1.5rem 1.5rem 0.5rem; }
|
|
.sidebar-menu { flex: 1; padding: 0 0.75rem; margin-top: 1rem; overflow-y: auto; }
|
|
.sidebar-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
padding: 0.75rem 1rem;
|
|
border-radius: var(--radius-xl);
|
|
transition: all var(--transition-normal);
|
|
cursor: pointer;
|
|
margin-bottom: 0.25rem;
|
|
text-decoration: none;
|
|
color: var(--color-text-gray-400);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
white-space: nowrap;
|
|
}
|
|
.sidebar-item:not(.active):hover { background-color: rgba(255, 255, 255, 0.05); color: var(--color-text-white); }
|
|
.sidebar-item.active { background-color: var(--color-mint); color: var(--color-bg-dark); }
|
|
.sidebar-foot { padding: 1rem 1.5rem; font-size: var(--text-xs); color: var(--color-text-gray-500); }
|
|
.main-content { margin-left: 240px; min-height: 100vh; padding: var(--spacing-page-md); }
|
|
|
|
/* ── 카드 패널 (프로덕트 .card / .card-inner) ── */
|
|
.card {
|
|
background-color: var(--color-bg-card);
|
|
border-radius: var(--radius-3xl);
|
|
padding: var(--spacing-page);
|
|
border: 1px solid var(--color-border-white-5);
|
|
box-shadow: var(--shadow-xl);
|
|
}
|
|
.card-inner {
|
|
background-color: rgba(18, 26, 29, 0.5);
|
|
border-radius: var(--radius-2xl);
|
|
border: 1px solid var(--color-border-white-5);
|
|
padding: 1rem;
|
|
}
|
|
|
|
/* ── 타이틀 (프로덕트 .page-title) ── */
|
|
.page-title {
|
|
font-size: var(--text-3xl);
|
|
font-weight: 700;
|
|
margin: 0 0 0.5rem;
|
|
letter-spacing: -0.025em;
|
|
text-align: center;
|
|
}
|
|
.page-subtitle {
|
|
font-size: var(--text-base);
|
|
color: var(--color-text-gray-400);
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
/* 섹션 라벨 — 굵은 흰색, 장식 없음 */
|
|
.eyebrow {
|
|
font-size: var(--text-lg);
|
|
font-weight: 700;
|
|
color: var(--color-text-white);
|
|
display: block;
|
|
}
|
|
.field-label { font-size: var(--text-base); font-weight: 600; color: var(--color-text-gray-300); }
|
|
|
|
/* ── 버튼 (프로덕트 .btn-*) ── */
|
|
.btn-cta {
|
|
background-color: var(--color-purple);
|
|
color: var(--color-text-white);
|
|
font-weight: 700;
|
|
padding: 1rem 4rem;
|
|
border-radius: var(--radius-full);
|
|
transition: all var(--transition-normal);
|
|
box-shadow: var(--shadow-purple);
|
|
font-size: var(--text-lg);
|
|
font-family: var(--font);
|
|
border: none;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
white-space: nowrap;
|
|
}
|
|
.btn-cta:hover:not(:disabled) { background-color: var(--color-purple-hover); }
|
|
.btn-cta:disabled { opacity: 0.45; cursor: default; }
|
|
|
|
.btn-mint {
|
|
background-color: var(--color-mint);
|
|
color: var(--color-bg-dark);
|
|
font-weight: 700;
|
|
padding: 1rem;
|
|
border-radius: var(--radius-xl);
|
|
transition: all var(--transition-normal);
|
|
font-size: var(--text-base);
|
|
font-family: var(--font);
|
|
border: none;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
white-space: nowrap;
|
|
}
|
|
.btn-mint:hover:not(:disabled) { background-color: var(--color-mint-hover); }
|
|
.btn-mint:disabled { opacity: 0.45; cursor: default; }
|
|
|
|
/* 보조 행동 (프로덕트 .btn-regenerate 계열: mint tonal) */
|
|
.btn-tonal-mint {
|
|
background-color: var(--color-mint-20);
|
|
color: var(--color-mint);
|
|
border: 1px solid var(--color-mint-30);
|
|
font-weight: 700;
|
|
padding: 0.75rem 1.25rem;
|
|
border-radius: var(--radius-xl);
|
|
transition: background-color var(--transition-normal);
|
|
font-size: var(--text-base);
|
|
font-family: var(--font);
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
}
|
|
.btn-tonal-mint:hover { background-color: var(--color-mint-30); }
|
|
|
|
.btn-outline {
|
|
background-color: transparent;
|
|
border: 1px solid var(--color-border-gray-600);
|
|
color: var(--color-text-white);
|
|
font-weight: 700;
|
|
padding: 0.75rem 2rem;
|
|
border-radius: var(--radius-full);
|
|
transition: all var(--transition-normal);
|
|
font-size: var(--text-base);
|
|
font-family: var(--font);
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
.btn-outline:hover:not(:disabled) { background-color: rgba(255, 255, 255, 0.05); }
|
|
.btn-outline:disabled { opacity: 0.45; cursor: default; }
|
|
|
|
.btn-back {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem 1.25rem;
|
|
border-radius: var(--radius-full);
|
|
border: 1px solid var(--color-border-gray-600);
|
|
background-color: transparent;
|
|
color: var(--color-text-gray-300);
|
|
font-size: var(--text-base);
|
|
font-family: var(--font);
|
|
font-weight: 600;
|
|
transition: background-color var(--transition-normal);
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
.btn-back:hover { background-color: rgba(255, 255, 255, 0.05); }
|
|
|
|
/* 선택 옵션 (프로덕트 .btn-select) */
|
|
.btn-select {
|
|
padding: 0.75rem;
|
|
border-radius: var(--radius-xl);
|
|
border: 1px solid var(--color-border-gray-700);
|
|
background-color: rgba(18, 26, 29, 0.4);
|
|
color: var(--color-text-gray-400);
|
|
font-size: var(--text-sm);
|
|
font-weight: 700;
|
|
font-family: var(--font);
|
|
transition: all var(--transition-normal);
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
.btn-select:hover { color: var(--color-text-white); }
|
|
.btn-select.selected {
|
|
border: 1.5px solid var(--color-mint);
|
|
color: var(--color-text-white);
|
|
background-color: var(--color-mint-10);
|
|
}
|
|
|
|
/* 정보 태그 — 클릭 안 됨 */
|
|
.tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
height: 26px;
|
|
padding: 0 12px;
|
|
border-radius: var(--radius-full);
|
|
background: var(--color-mint-10);
|
|
color: var(--color-mint);
|
|
font-size: var(--text-sm);
|
|
font-weight: 600;
|
|
letter-spacing: -0.006em;
|
|
}
|
|
|
|
/* ── 입력 (프로덕트 흰 pill 입력) ── */
|
|
.input {
|
|
height: 56px;
|
|
background: var(--color-text-white);
|
|
color: var(--color-bg-dark);
|
|
border: 1.5px solid transparent;
|
|
border-radius: var(--radius-full);
|
|
padding: 0 1.5rem;
|
|
font: 600 var(--text-base)/1 var(--font);
|
|
letter-spacing: -0.006em;
|
|
width: 100%;
|
|
}
|
|
.input::placeholder { color: #3a8f86; font-weight: 700; }
|
|
.input--center { text-align: center; }
|
|
.input--center::placeholder { text-align: center; }
|
|
.input:focus { outline: none; border-color: var(--color-mint); }
|
|
|
|
/* ── 위저드 스텝퍼 (프로덕트 .wizard-*) ── */
|
|
.wizard-stepper {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
padding: 1.5rem 2rem 3rem;
|
|
width: 100%;
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
}
|
|
.wizard-step { flex: none; width: 2rem; position: relative; display: flex; justify-content: center; z-index: 1; }
|
|
.wizard-step-line {
|
|
flex: 1;
|
|
height: 1.5px;
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
margin-top: calc(1rem - 0.75px);
|
|
transition: background-color 0.3s;
|
|
}
|
|
.wizard-step-line.done { background-color: var(--color-mint); opacity: 0.8; }
|
|
.wizard-stepper-node {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
flex-shrink: 0;
|
|
border-radius: var(--radius-full);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
|
|
}
|
|
.wizard-step.pending .wizard-stepper-node {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
color: rgba(255, 255, 255, 0.35);
|
|
border: 1.5px solid rgba(255, 255, 255, 0.15);
|
|
}
|
|
.wizard-step.current .wizard-stepper-node {
|
|
background-color: transparent;
|
|
color: var(--color-mint);
|
|
border: 2px solid var(--color-mint);
|
|
box-shadow: 0 0 10px rgba(166, 255, 234, 0.45);
|
|
}
|
|
.wizard-step.done .wizard-stepper-node {
|
|
background-color: var(--color-mint);
|
|
color: var(--color-bg-dark);
|
|
border: none;
|
|
}
|
|
.wizard-step.failed .wizard-stepper-node {
|
|
background-color: transparent;
|
|
color: #ff7a7a;
|
|
border: 2px solid #ff7a7a;
|
|
}
|
|
.wizard-stepper-label {
|
|
position: absolute;
|
|
top: 2.5rem;
|
|
left: 50%;
|
|
transform: translate(-50%);
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: rgba(255, 255, 255, 0.35);
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
transition: color 0.3s, font-weight 0.3s;
|
|
}
|
|
.wizard-step.current .wizard-stepper-label { color: var(--color-mint); font-weight: 600; }
|
|
.wizard-step.done .wizard-stepper-label { color: rgba(255, 255, 255, 0.55); }
|
|
.wizard-step.failed .wizard-stepper-label { color: #ff7a7a; font-weight: 600; }
|
|
|
|
/* ── 진행 바 (프로덕트 .progress-bar-*) ── */
|
|
.progress-bar-container {
|
|
width: 100%;
|
|
height: 0.375rem;
|
|
background-color: #1f2937;
|
|
border-radius: var(--radius-full);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.progress-bar-fill {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 100%;
|
|
background-color: var(--color-mint);
|
|
border-radius: var(--radius-full);
|
|
transition: width 0.5s ease;
|
|
}
|
|
|
|
/* 생성 중 원형 스피너 */
|
|
.gen-spinner {
|
|
width: 72px;
|
|
height: 72px;
|
|
border-radius: 50%;
|
|
border: 5px solid rgba(166, 130, 255, 0.18);
|
|
border-top-color: var(--color-purple);
|
|
animation: spin 1.1s linear infinite;
|
|
}
|
|
@keyframes spin { to { transform: rotate(360deg); } }
|
|
|
|
@keyframes pulse-dot {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.35; }
|
|
}
|
|
.dot-running { animation: pulse-dot 1.2s ease-in-out infinite; }
|
|
|
|
/* ── 무빙포스터 진입 분기 (2026-08-28) — 버튼 한 규격 · 진입 카드 · 모바일 ── */
|
|
.btn-lg { height: 52px; width: 100%; padding: 0 1.5rem; font-size: var(--text-base); border-radius: var(--radius-full); gap: 0.5rem; }
|
|
.btn-sub { font-weight: 500; opacity: 0.8; font-size: var(--text-sm); }
|
|
.note { color: var(--color-text-gray-500); font-size: var(--text-sm); margin: 0; text-align: center; }
|
|
.note a { color: var(--color-mint); }
|
|
.sidebar-product { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; color: var(--color-mint); white-space: nowrap; }
|
|
|
|
.entry-stack { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; max-width: 560px; margin-top: 1.5rem; }
|
|
.entry { display: flex; flex-direction: column; gap: 0.85rem; padding: 1.25rem; position: relative; }
|
|
.entry--hot { border-color: var(--color-mint-30); }
|
|
.entry-badge { align-self: flex-start; background: var(--color-mint); color: var(--color-bg-dark); font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: var(--radius-full); letter-spacing: 0.04em; margin-bottom: -0.35rem; }
|
|
.entry-head { display: flex; align-items: center; gap: 0.75rem; }
|
|
.entry-icon { width: 44px; height: 44px; flex: none; border-radius: var(--radius-md); background: var(--color-mint-10); color: var(--color-mint); display: grid; place-items: center; font-weight: 800; font-size: 12px; letter-spacing: 0.04em; }
|
|
.entry-title { margin: 0; font-size: var(--text-lg); font-weight: 800; letter-spacing: -0.02em; }
|
|
.entry-desc { margin: 0.15rem 0 0; color: var(--color-text-gray-400); font-size: var(--text-sm); }
|
|
.entry-flow { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; font-size: var(--text-xs); color: var(--color-text-gray-300); }
|
|
.entry-flow span { background: var(--color-bg-card-inner); border: 1px solid var(--color-border-white-5); padding: 0.3rem 0.6rem; border-radius: var(--radius-full); }
|
|
.entry-flow em { font-style: normal; color: var(--color-text-gray-500); }
|
|
.entry-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
|
|
.entry-facts div { background: rgba(18, 26, 29, 0.5); border: 1px solid var(--color-border-white-5); border-radius: var(--radius-md); padding: 0.5rem 0.6rem; }
|
|
.entry-facts b { display: block; font-size: var(--text-xs); color: var(--color-text-gray-500); font-weight: 600; }
|
|
.entry-facts span { font-size: var(--text-sm); font-weight: 700; font-variant-numeric: tabular-nums; }
|
|
|
|
.gate-actions { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.75rem; }
|
|
@media (min-width: 640px) { .gate-actions { grid-template-columns: 1fr auto; } .gate-actions .btn-outline { width: auto; grid-row: 1; } .gate-actions .btn-cta { grid-column: 2; } }
|
|
|
|
/* 결과·실패·나레이션 레이아웃 기본값(데스크톱) */
|
|
.playreel-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
|
|
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-page-md); align-items: stretch; }
|
|
.result-grid .result-video { display: flex; align-items: center; justify-content: center; min-height: 420px; }
|
|
.result-grid .result-meta { display: flex; flex-direction: column; border-left: 2px solid var(--color-mint-20); padding-left: var(--spacing-page); }
|
|
.result-actions { margin-top: auto; padding-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
|
|
.fail-actions { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
|
|
.narr-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.45rem; }
|
|
.archive-detail { display: grid; grid-template-columns: 300px 1fr; gap: var(--s-6); align-items: start; }
|
|
.narr-row .narr-slot { width: 84px; flex-shrink: 0; font-size: var(--text-xs); font-weight: 700; }
|
|
|
|
/* 스테퍼: 좁은 화면에서 가로 스크롤 */
|
|
.stepper-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
|
|
.stepper-scroll::-webkit-scrollbar { display: none; }
|
|
.stepper-scroll .wizard-stepper { min-width: 560px; }
|
|
|
|
@media (max-width: 767px) {
|
|
.sidebar { position: sticky; top: 0; width: 100%; height: auto; flex-direction: row; align-items: center; border-right: none; border-bottom: 1px solid var(--color-border-white-5); }
|
|
.sidebar-logo { padding: 0.75rem 1rem; }
|
|
.sidebar-menu { display: flex; margin: 0; padding: 0 0.5rem; gap: 0.25rem; }
|
|
.sidebar-item { padding: 0.5rem 0.75rem; font-size: 14px; margin: 0; }
|
|
.sidebar-item svg { display: none; }
|
|
.sidebar-foot { display: none; }
|
|
.main-content { margin-left: 0; padding: var(--spacing-page); }
|
|
.entry-facts { grid-template-columns: repeat(2, 1fr); }
|
|
.page-title { font-size: var(--text-2xl); }
|
|
.stepper-scroll .wizard-stepper { padding: 1rem 1rem 2.5rem; }
|
|
/* 상단 메뉴 행: 로고는 고정, 메뉴는 가로 스크롤(넘치는 항목이 잘리지 않게) */
|
|
.sidebar { overflow: hidden; }
|
|
.sidebar-logo { flex: none; }
|
|
.sidebar-menu { flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; }
|
|
.sidebar-menu::-webkit-scrollbar { display: none; }
|
|
.sidebar-product { display: none; }
|
|
.playreel-steps { grid-template-columns: repeat(2, 1fr); }
|
|
.result-grid { grid-template-columns: 1fr; }
|
|
.result-grid .result-video { min-height: 240px; }
|
|
.result-grid .result-meta { border-left: none; padding-left: 0; }
|
|
.result-actions { grid-template-columns: 1fr; }
|
|
.fail-actions { flex-direction: column; }
|
|
.fail-actions .btn-outline, .fail-actions .btn-tonal-mint { width: 100%; }
|
|
.narr-row { flex-direction: column; align-items: stretch; gap: 0.25rem; }
|
|
.narr-row .input { padding: 0 1rem; }
|
|
.archive-detail { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
/* 자동 승인 환경설정 — /playreel 패널·게이트 카드 체크 */
|
|
.pref-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; }
|
|
.pref-row + .pref-row { border-top: 1px solid var(--color-border-white-5); }
|
|
.switch { flex: none; width: 42px; height: 24px; border-radius: 9999px; border: 1px solid var(--color-border-white-10); background: var(--color-border-white-10); position: relative; cursor: pointer; padding: 0; transition: background-color 0.15s; }
|
|
.switch-knob { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--color-text-gray-400); transition: transform 0.15s, background-color 0.15s; }
|
|
.switch.on { background: var(--color-mint); border-color: var(--color-mint); }
|
|
.switch.on .switch-knob { transform: translateX(18px); background: var(--color-bg-dark); }
|
|
.switch:focus-visible { outline: 2px solid var(--color-mint); outline-offset: 2px; }
|
|
@media (prefers-reduced-motion: reduce) { .switch, .switch-knob { transition: none; } }
|
|
|
|
/* ── Playreel 자체 셸 워드마크 (별도 서비스 URL — 2026-09-01) ── */
|
|
/* ADO2 로고 위 · Playreel 워드마크 아래. (ado2) 셸의 락업과 같은 문법이되
|
|
여기서는 Playreel 이 서비스 이름이라 아래쪽에 무게를 준다. */
|
|
.pr-wordmark { display: inline-flex; flex-direction: column; gap: 6px; text-decoration: none; align-items: flex-start; }
|
|
/* 두 번째 줄을 가로로 — 로고 폭과 맞춰 락업이 사각형으로 앉는다 */
|
|
.pr-line { display: flex; align-items: baseline; gap: 7px; }
|
|
.pr-wordmark svg { color: var(--color-text-gray-300); }
|
|
.pr-mark {
|
|
font-size: 18px; font-weight: 800; letter-spacing: 0.14em;
|
|
color: var(--color-text-white); line-height: 1;
|
|
}
|
|
.pr-mark-ko {
|
|
font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
|
|
color: var(--color-mint);
|
|
}
|
|
.playreel-recent { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; }
|
|
.pr-archive { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin-top: 2rem; }
|
|
.pr-archive-blank {
|
|
aspect-ratio: 9 / 16; display: flex; align-items: center; justify-content: center;
|
|
background: var(--color-bg-dark); border-radius: var(--radius-md);
|
|
font-size: var(--text-xs); color: var(--color-text-gray-500);
|
|
}
|