- 마스터 + 인원/장비/자재/공사량/작업사진 6테이블 마이그레이션 - 6개 탭: 작업내용, 인원, 장비, 자재, 공사량, 작업사진 - 작업내용: 금일/명일 텍스트 + 날씨/기온/강수/미세먼지 메타 - 전일누계 + 금일 + 총계 누적 패턴 (인원/장비/자재/공사량) - 작업사진: 파일 업로드 + 사진목록/사진정보 2단 레이아웃 - 상태별 버튼 제어 (작성중→저장/삭제, 검토중→읽기전용) - 양식보기: 3페이지 전체화면 뷰어 (작업일보/인원장비/자재) - 검토자 지정 모달, 캘린더 스트립, 번개 랜덤데이터
102 lines
2.6 KiB
HTML
102 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css">
|
|
<style>
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
width: 720pt;
|
|
height: 405pt;
|
|
font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
|
|
background: #ffffff;
|
|
}
|
|
p, h1, h2, h3 { margin: 0; }
|
|
|
|
body {
|
|
background: #1e293b;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 30pt;
|
|
}
|
|
.accent-line {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 6pt;
|
|
background: #0d9488;
|
|
}
|
|
.logo {
|
|
width: 80pt;
|
|
height: 32pt;
|
|
background: #0d9488;
|
|
border-radius: 4pt;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.logo p {
|
|
font-size: 14pt;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
}
|
|
.title-area {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
text-align: center;
|
|
overflow: visible;
|
|
}
|
|
.main-title {
|
|
font-size: 32pt;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
margin-bottom: 12pt;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
.sub-title {
|
|
font-size: 16pt;
|
|
color: #0d9488;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
.version {
|
|
font-size: 10pt;
|
|
color: #64748b;
|
|
margin-top: 16pt;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
}
|
|
.footer p {
|
|
font-size: 9pt;
|
|
color: #64748b;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="accent-line"></div>
|
|
<div class="logo">
|
|
<p>SAM (주일/경동)</p>
|
|
</div>
|
|
<div class="title-area">
|
|
<p class="main-title">SAM 사용법 영상 자동 생성 시스템</p>
|
|
<p class="sub-title">웹 기획서 및 스토리보드</p>
|
|
<p class="version">Version D1.0</p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>2026.02.15 | IT 혁신팀</p>
|
|
</div>
|
|
</body>
|
|
</html> |