177 lines
7.9 KiB
HTML
177 lines
7.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>DX 실행 체계 구축 방안</title>
|
|
<style>
|
|
/* Design Agent — 디자인 토큰 */
|
|
/* CLAUDE.md에 정의된 디자인 원칙을 CSS 변수로 구현 */
|
|
|
|
:root {
|
|
/* 색상 */
|
|
--color-primary: #1e293b;
|
|
--color-accent: #2563eb;
|
|
--color-neutral: #64748b;
|
|
--color-bg: #ffffff;
|
|
--color-bg-subtle: #f8fafc;
|
|
--color-border: #e2e8f0;
|
|
--color-danger: #dc2626;
|
|
--color-success: #16a34a;
|
|
--color-text: #1e293b;
|
|
--color-text-secondary: #64748b;
|
|
--color-text-light: #94a3b8;
|
|
|
|
/* 폰트 크기 */
|
|
--font-title: 2rem;
|
|
--font-subtitle: 1.25rem;
|
|
--font-body: 0.95rem;
|
|
--font-caption: 0.8rem;
|
|
--font-small: 0.7rem;
|
|
|
|
/* 폰트 두께 */
|
|
--weight-normal: 400;
|
|
--weight-medium: 500;
|
|
--weight-bold: 700;
|
|
--weight-black: 900;
|
|
|
|
/* 여백 */
|
|
--spacing-page: 40px;
|
|
--spacing-block: 20px;
|
|
--spacing-inner: 16px;
|
|
--spacing-small: 8px;
|
|
|
|
/* 기타 */
|
|
--radius: 6px;
|
|
--border-width: 1px;
|
|
--accent-border: 3px;
|
|
--line-height-ko: 1.7;
|
|
}
|
|
|
|
/* Design Agent — 기본 슬라이드 스타일 */
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* 슬라이드 컨테이너: 16:9 고정 비율 */
|
|
.slide {
|
|
width: 1280px;
|
|
height: 720px;
|
|
aspect-ratio: 16 / 9;
|
|
overflow: hidden;
|
|
background: var(--color-bg);
|
|
font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
|
|
color: var(--color-text);
|
|
font-size: var(--font-body);
|
|
line-height: var(--line-height-ko);
|
|
word-break: keep-all;
|
|
padding: var(--spacing-page);
|
|
display: grid;
|
|
gap: var(--spacing-block);
|
|
}
|
|
|
|
/* 슬라이드 제목 */
|
|
.slide-title {
|
|
font-size: var(--font-title);
|
|
font-weight: var(--weight-black);
|
|
color: var(--color-primary);
|
|
border-bottom: var(--accent-border) solid var(--color-accent);
|
|
padding-bottom: var(--spacing-small);
|
|
}
|
|
|
|
/* 섹션 제목 */
|
|
.section-title {
|
|
font-size: var(--font-subtitle);
|
|
font-weight: var(--weight-bold);
|
|
color: var(--color-primary);
|
|
margin-bottom: var(--spacing-small);
|
|
}
|
|
|
|
/* 본문 */
|
|
.body-text {
|
|
font-size: var(--font-body);
|
|
color: var(--color-text);
|
|
line-height: var(--line-height-ko);
|
|
}
|
|
|
|
/* 캡션/출처 */
|
|
.caption {
|
|
font-size: var(--font-caption);
|
|
color: var(--color-text-light);
|
|
font-style: italic;
|
|
}
|
|
|
|
/* 강조 텍스트 */
|
|
.highlight {
|
|
color: var(--color-accent);
|
|
font-weight: var(--weight-bold);
|
|
}
|
|
|
|
/* 경고/문제 강조 */
|
|
.danger {
|
|
color: var(--color-danger);
|
|
font-weight: var(--weight-bold);
|
|
}
|
|
|
|
/* ── 컨테이너 레이아웃 ── */
|
|
/* grid area: flex 축소 허용. overflow는 프레임(.slide)에서만 hidden. */
|
|
/* A-1(Sonnet 디자인 조정)이 텍스트 양에 맞게 CSS를 사전 조정하므로,
|
|
area 레벨에서는 overflow: visible로 텍스트 잘림을 방지한다. */
|
|
.slide > div {
|
|
overflow: visible;
|
|
min-height: 0;
|
|
min-width: 0;
|
|
}
|
|
/* area 안에서 flex-column 그룹핑된 블록들의 축소 허용 */
|
|
.slide > div > div {
|
|
min-height: 0;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
|
|
.slide-1 {
|
|
grid-template-areas: 'header header' 'body sidebar' 'footer footer';
|
|
grid-template-columns: 65fr 35fr;
|
|
grid-template-rows: auto auto auto;
|
|
}
|
|
.slide-1 .area-body { grid-area: body; }
|
|
.slide-1 .area-sidebar { grid-area: sidebar; }
|
|
.slide-1 .area-footer { grid-area: footer; }
|
|
|
|
.slide + .slide { margin-top: 40px; }
|
|
@media print {
|
|
.slide { page-break-after: always; }
|
|
.slide + .slide { margin-top: 0; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="slide slide-1">
|
|
<div class="slide-title" style="grid-area: header;">DX 실행 체계 구축 방안</div>
|
|
|
|
<div class="area-body" style="overflow:hidden;">
|
|
<div style="width:100%; height:100%; box-sizing:border-box; font-family:Segoe UI,sans-serif; color:#0f172a; display:flex; flex-direction:column; gap:10px;"><div style="background:#fff7ed; border:1px solid #fdba74; border-radius:14px; padding:12px 14px;"><div style="font-size:13px; font-weight:900; color:#9a3412; margin-bottom:8px;">DX 시행을 위한 필수 요건</div><ul style="font-size:10.4px; line-height:1.6; color:#334155; padding-left:0; margin:0; list-style:disc;"><li style="margin-left:16px; margin-bottom:6px;">기술(디지털): Digital 기술(S/W, H/W)과 업무 Process의 통합, 분야별 전문 지식 보유</li><li style="margin-left:16px; margin-bottom:6px;">사람(역량): 혁신적 사고방식과 창의적 문제 해결 능력, 사용자 중심 사고와 DX 수행 경험</li><li style="margin-left:16px; margin-bottom:6px;">자연(여건): 지속적인 투자 및 실행 의지.</li></ul></div><div style="display:grid; grid-template-columns:1.05fr 0.95fr; gap:12px; align-items:start;"><div style="background:#eff6ff; border:1px solid #93c5fd; border-radius:14px; padding:12px 14px;"><div style="font-size:13px; font-weight:900; color:#1e3a8a; margin-bottom:8px;">과정(Process)의 혁신</div><ul style="font-size:10.4px; line-height:1.6; color:#334155; padding-left:0; margin:0; list-style:disc;"><li style="margin-left:16px; margin-bottom:6px;">Analogue 기반 업무의 Digital화: 개념·문서·행정 절차 중심에서 시각화된 목적물, 소통, 투명성 중심으로 전환</li><li style="margin-left:16px; margin-bottom:6px;">GIS + BIM의 연계: 위치정보와 3D모델 기반 건설 정보의 연계를 통한 업무 프로세스 혁신</li><li style="margin-left:16px; margin-bottom:6px;">사용자 중심의 Solution 제공: 분절화된 성과물과 정보물을 연계할 수 있는 설계·시공 Solution 제공.</li></ul></div><div style="background:#f8fafc; border:1px solid #cbd5e1; border-radius:14px; padding:12px 14px;"><div style="font-size:13px; font-weight:900; color:#334155; margin-bottom:8px;">결과(Product)의 변화</div><ul style="font-size:10.4px; line-height:1.6; color:#334155; padding-left:0; margin:0; list-style:disc;"><li style="margin-left:16px; margin-bottom:6px;">Copy & Paste로 인해 하향 평준화된 기존 성과물의 품질 향상</li><li style="margin-left:16px; margin-bottom:6px;">Analogue 기반 도서 외 Digital 기반 정보물 추가</li><li style="margin-left:16px; margin-bottom:6px;">Solution을 활용한 업무 효율화와 협업 환경 조성.</li></ul></div></div></div>
|
|
</div>
|
|
|
|
<div class="area-sidebar" style="overflow:hidden;">
|
|
<div style="width:100%; height:100%; box-sizing:border-box; font-family:Segoe UI,sans-serif; display:flex; flex-direction:column; gap:10px;"><div style="background:#f8fafc; border:1px solid #cbd5e1; border-radius:14px; padding:12px 14px;"><div style="font-size:10.0px; font-weight:900; color:#334155; margin-bottom:8px;">결과(Product)의 변화</div><ul style="font-size:10.0px; line-height:1.6; color:#334155; padding-left:0; margin:0; list-style:disc;"><li style="margin-left:16px; margin-bottom:6px;">Copy & Paste로 인해 하향 평준화된 기존 성과물의 품질 향상</li><li style="margin-left:16px; margin-bottom:6px;">Analogue 기반 도서 외 Digital 기반 정보물 추가</li><li style="margin-left:16px; margin-bottom:6px;">Solution을 활용한 업무 효율화와 협업 환경 조성.</li></ul></div></div>
|
|
</div>
|
|
|
|
<div class="area-footer" style="overflow:hidden;">
|
|
<div style="background:linear-gradient(135deg, #0b6ef3 0%, #17a6f5 100%); border-radius:10px; padding:10px 20px; text-align:center; color:#ffffff; width:100%; height:58px; display:flex; align-items:center; justify-content:center; box-sizing:border-box;"><div style="font-size:13px; font-weight:900; line-height:1.35;">DX는 필요한 요건과 체계를 갖춘 후 시행해야만 그 효과를 기대할 수 있다.</div></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
window.onbeforeprint = function() {
|
|
document.querySelectorAll('details').forEach(function(d) { d.open = true; });
|
|
};
|
|
window.onafterprint = function() {
|
|
document.querySelectorAll('details').forEach(function(d) { d.open = false; });
|
|
};
|
|
</script>
|
|
</body>
|
|
</html> |