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">방화셔터 견적 시스템</p>
|
||
|
|
<p class="sub-title">웹 기획서 및 스토리보드</p>
|
||
|
|
<p class="version">Version D1.0</p>
|
||
|
|
</div>
|
||
|
|
<div class="footer">
|
||
|
|
<p>2024.10.24 | DX 추진팀</p>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|