- templates/phase_z2/slide_base.html — geometry 재정상화:
divider top 58 / height 2 / #cbd5e1
body top 76 / height 585 / left 50 / width calc(100%-100px)
footer left 50 / bottom 8 / height 41 / width calc(100%-100px)
(사용자 lock 2026-05-07 — front 정합)
- templates/styles/tokens/{spacing,typography}.css — 5-layer 위계 lock 반영:
spacing : --slide-divider-top 58 / --slide-body-top 76 / --slide-body-height 585 /
--slide-footer-bottom 8 (slide_base.html 와 1:1)
typography : --font-zone-title 16px (대) / --font-sub-title 12px (소) /
--font-body 10px (콘텐츠) — 5-layer (대/중/소/부소/콘텐츠)
- templates/phase_z2/families/three_parallel_requirements.html — F13 partial:
cleanup-1 (2026-05-08) stale 주석 정정 (Legacy templates/blocks/structures/
prerequisites-3col.html reference 제거 — 해당 legacy 폴더 삭제 후 broken).
- templates/phase_z2/families/process_product_two_way.html — F29 partial:
visual fidelity bug fix (2026-05-08).
missing SVG asset 3 개 (header_left_bg, header_right_bg, body_bg) 참조 제거 →
figma origin (figma_to_html_agent/blocks/1171281210/index.html) 의 R8 룰
("순수 CSS 우선") 따라 linear-gradient + border-radius pill 로 재현.
PROMOTED 줄도 갱신 (banner-left/right bg gradient + body bg 2-half gradient).
regression 0 (MDX03 fresh run 검증 — final.html PASS, missing image 0).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
256 lines
8.1 KiB
HTML
256 lines
8.1 KiB
HTML
<!-- Phase Z-2 MVP-1.5b — single slide + Type B layout (top/bottom zones).
|
||
원래 Phase Z 설계 복귀: MDX 1 = slide 1, layout preset = zone 분할, frame-derived block ⊂ zone. -->
|
||
<!DOCTYPE html>
|
||
<html lang="ko">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=1280">
|
||
<title>{{ slide_title }}</title>
|
||
<style>
|
||
/* ── existing tokens (inlined) ── */
|
||
{{ token_css | safe }}
|
||
|
||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
body {
|
||
font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
|
||
background: #e8ecf0;
|
||
display: flex; justify-content: center; align-items: center;
|
||
min-height: 100vh;
|
||
word-break: keep-all;
|
||
padding: 20px 0;
|
||
}
|
||
|
||
/* ── 16:9 슬라이드 (single, 1280×720) ── */
|
||
.slide {
|
||
width: 1280px; height: 720px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
background: #fff;
|
||
box-shadow: 0 4px 20px rgba(0,0,0,.15);
|
||
flex-shrink: 0;
|
||
}
|
||
.slide-bg {
|
||
position: absolute; inset: 0;
|
||
background: linear-gradient(180deg, #f0f0f0 0%, #ffffff 100%);
|
||
z-index: 0;
|
||
}
|
||
.slide-title {
|
||
position: absolute;
|
||
left: 52px; top: 22px;
|
||
width: calc(100% - 104px);
|
||
font-weight: 700;
|
||
font-size: var(--font-slide-title);
|
||
line-height: var(--lh-slide-title);
|
||
background-image: linear-gradient(180deg, #296b55 0%, #123328 100%);
|
||
-webkit-background-clip: text; background-clip: text;
|
||
color: transparent;
|
||
text-shadow: 0 0 2px #322c1e;
|
||
z-index: 2;
|
||
}
|
||
.slide-divider {
|
||
position: absolute;
|
||
left: 50px; top: 58px;
|
||
width: calc(100% - 100px);
|
||
height: 2px;
|
||
background: #cbd5e1;
|
||
z-index: 2;
|
||
}
|
||
.slide-body {
|
||
position: absolute;
|
||
left: 50px; top: 76px;
|
||
width: calc(100% - 100px); /* 1180 */
|
||
height: 585px;
|
||
z-index: 1;
|
||
overflow: hidden;
|
||
}
|
||
|
||
/* ── Layout preset (composition planner v0 — 8 vocabulary) ──
|
||
단일 .layout-{preset} 클래스에 grid CSS 주입.
|
||
layout_css = pipeline build_layout_css() 결과 :
|
||
- horizontal-2 : rows = dynamic px (content_weight + frame_min_height)
|
||
- 그 외 : rows / cols = fr default (LAYOUT_PRESETS)
|
||
positions (single / top / bottom / left / right / top-left / ... / grid-2x2 9개)
|
||
은 .zone 의 inline grid-area 로 지정 — preset CSS 는 areas 만 정의. */
|
||
.layout-{{ layout_preset }} {
|
||
display: grid;
|
||
grid-template-columns: {{ layout_css.cols }};
|
||
grid-template-rows: {{ layout_css.rows }};
|
||
grid-template-areas: {{ layout_css.areas | safe }};
|
||
gap: {{ gap_px }}px;
|
||
height: 100%;
|
||
}
|
||
|
||
/* ── Zone — block 가용 공간 최대화. 프레임 자체 styling 이 boundary 역할 ── */
|
||
.zone {
|
||
position: relative;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
min-width: 0;
|
||
min-height: 0;
|
||
}
|
||
|
||
/* ── Frame-family text layout contract (shared, reusable) ──
|
||
feedback-1 (mvp1.5b_test7): visible improvement 강화.
|
||
Stronger hanging indent + breathing line spacing + visible hierarchy. */
|
||
.text-line {
|
||
font-size: var(--font-body); /* 11px */
|
||
font-weight: var(--weight-body);
|
||
line-height: 1.6; /* breathing room */
|
||
margin: 0;
|
||
}
|
||
.text-line + .text-line {
|
||
margin-top: 4px; /* visible gap between lines (was 2px) */
|
||
}
|
||
|
||
/* bullet line — hanging indent via padding + absolute marker (안정적) */
|
||
.text-line--bullet {
|
||
padding-left: 14px;
|
||
position: relative;
|
||
}
|
||
.text-line--bullet::before {
|
||
content: "•"; /* visible bullet 마커 */
|
||
position: absolute;
|
||
left: 2px;
|
||
top: 0;
|
||
font-weight: 700;
|
||
line-height: inherit;
|
||
color: inherit;
|
||
}
|
||
/* indent levels — visible nested hierarchy */
|
||
.text-line--indent-1 {
|
||
padding-left: 30px;
|
||
}
|
||
.text-line--indent-1::before {
|
||
content: "◦"; /* sub-bullet 다른 마커 */
|
||
left: 18px;
|
||
}
|
||
.text-line--indent-2 {
|
||
padding-left: 46px;
|
||
}
|
||
.text-line--indent-2::before {
|
||
content: "▪";
|
||
left: 34px;
|
||
}
|
||
/* body line — 마커 없음 */
|
||
.text-line--body {
|
||
padding-left: 0;
|
||
}
|
||
.text-line strong { color: #000; font-weight: 700; }
|
||
|
||
/* ── Transform-block family (frame 29 AS-IS/TO-BE dedicated comparison component) ──
|
||
feedback-3: bullet rows 가 아닌 *전용 비교 component*. Header (AS-IS / TO-BE) + paired rows.
|
||
color-coded cells, left-border accent → 단번에 *비교 구조* 인지. */
|
||
.transform-block {
|
||
margin-top: 4px;
|
||
padding: 6px 8px 6px;
|
||
background: rgba(255, 255, 255, 0.4);
|
||
border-radius: 3px;
|
||
border: 1px solid rgba(0,0,0,0.05);
|
||
}
|
||
.transform-block__header {
|
||
display: grid;
|
||
grid-template-columns: 1fr 22px 1fr;
|
||
gap: 6px;
|
||
margin-bottom: 4px;
|
||
padding-bottom: 3px;
|
||
border-bottom: 1px dashed rgba(0,0,0,0.12);
|
||
font-size: 9px;
|
||
font-weight: 900;
|
||
letter-spacing: 0.5px;
|
||
}
|
||
.transform-block__label--from { color: #6b5444; }
|
||
.transform-block__label--to { color: #2563eb; text-align: left; }
|
||
.transform-rows {
|
||
display: flex; flex-direction: column;
|
||
gap: 4px;
|
||
}
|
||
.transform-row {
|
||
display: grid;
|
||
grid-template-columns: 1fr 22px 1fr;
|
||
gap: 6px;
|
||
align-items: stretch;
|
||
font-size: var(--font-body);
|
||
line-height: 1.45;
|
||
}
|
||
.transform-row__from {
|
||
padding: 3px 8px;
|
||
background: linear-gradient(90deg, rgba(140,120,90,0.16), rgba(140,120,90,0.08));
|
||
border-left: 2px solid #b8a98a;
|
||
border-radius: 2px;
|
||
color: #4b3f30;
|
||
font-weight: 500;
|
||
}
|
||
.transform-row__arrow {
|
||
text-align: center;
|
||
color: #2563eb;
|
||
font-weight: 900;
|
||
font-size: 14px;
|
||
align-self: center;
|
||
}
|
||
.transform-row__to {
|
||
padding: 3px 8px;
|
||
background: linear-gradient(90deg, rgba(37,99,235,0.10), rgba(37,99,235,0.18));
|
||
border-left: 2px solid #2563eb;
|
||
border-radius: 2px;
|
||
color: #1e40af;
|
||
font-weight: 700;
|
||
}
|
||
|
||
/* ── Footer pill — feedback-3: body 와 weight balance, 살짝 가벼워짐 ── */
|
||
.slide-footer {
|
||
position: absolute;
|
||
left: 50px; bottom: 8px;
|
||
width: calc(100% - 100px); /* front 기준 (body 와 정렬) */
|
||
height: 41px; /* front 기준 */
|
||
border-radius: 999px;
|
||
overflow: hidden;
|
||
z-index: 2;
|
||
display: flex; align-items: center; justify-content: center;
|
||
background: linear-gradient(90deg, #3b3523 5%, #263a2a 50%, #113f31 95%);
|
||
opacity: 0.92; /* slightly lighter */
|
||
}
|
||
.slide-footer-text {
|
||
position: relative; z-index: 1;
|
||
font-size: 15px; /* was 20px (--font-footer) */
|
||
font-weight: 700;
|
||
line-height: 1.2;
|
||
color: #fff;
|
||
text-align: center;
|
||
text-shadow: 0 0 3px rgba(0,0,0,.4);
|
||
letter-spacing: -0.01em;
|
||
}
|
||
.slide-footer-text em { color: #fe3; font-style: normal; }
|
||
|
||
.phase-z2-marker {
|
||
position: absolute;
|
||
top: 4px; right: 8px;
|
||
font-size: 9px; color: #94a3b8;
|
||
font-family: monospace;
|
||
z-index: 3;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="slide" data-page="1">
|
||
<div class="slide-bg"></div>
|
||
<div class="phase-z2-marker">phase_z2 / mvp-1.5b / {{ layout_preset }} / single slide</div>
|
||
<div class="slide-title">{{ slide_title }}</div>
|
||
<div class="slide-divider"></div>
|
||
<div class="slide-body">
|
||
<div class="layout-{{ layout_preset }}">
|
||
{% for zone in zones %}
|
||
<div class="zone" data-zone-position="{{ zone.position }}" data-template-id="{{ zone.template_id }}" style="grid-area: {{ zone.position }};">
|
||
{{ zone.partial_html | safe }}
|
||
</div>
|
||
{% endfor %}
|
||
</div>
|
||
</div>
|
||
{% if slide_footer %}
|
||
<div class="slide-footer">
|
||
<div class="slide-footer-text">{{ slide_footer | safe }}</div>
|
||
</div>
|
||
{% endif %}
|
||
</div>
|
||
</body>
|
||
</html>
|