121 lines
5.5 KiB
HTML
121 lines
5.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="../../css/global.css" type="text/css" />
|
|
<link rel="stylesheet" href="../../css/default.css" type="text/css" />
|
|
<link rel="stylesheet" href="../../css/editor.css" type="text/css" />
|
|
<script src="../../js/ui.js"></script>
|
|
|
|
</head>
|
|
|
|
<body class="ai-editor white">
|
|
<header class="ai-editor-header white">
|
|
<container>
|
|
<div row between>
|
|
<div col middle class="editor-logo">
|
|
<p>생성형 AI<br /> 업무서비스 <span>Beta</span></p>
|
|
</div>
|
|
<div>
|
|
<div class="user-info" row middle style="--gap:16px">
|
|
<div col style="--gap:2px">
|
|
<p>홍길동</p>
|
|
<span>외교정보기획국</span>
|
|
</div>
|
|
<div class="logout"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</container>
|
|
</header>
|
|
|
|
<section>
|
|
<container>
|
|
<div class="editor-body white">
|
|
<div row>
|
|
<div col class="editor-menu white">
|
|
<div>
|
|
<div row>
|
|
<button selected class="editor-btn writing-colored">문서작성</button>
|
|
</div>
|
|
<div row>
|
|
<button class="editor-btn translation-colored">번역</button>
|
|
</div>
|
|
<div row>
|
|
<button class="editor-btn guide-colored">사용자가이드</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div col class="editor-wrap">
|
|
<div>
|
|
<h2 class="editor-title white">
|
|
문서작성
|
|
</h2>
|
|
</div>
|
|
<div class="btn-group white">
|
|
<button selected>#연설문</button>
|
|
<button>#보도자료</button>
|
|
</div>
|
|
<div class="editor-articles indicators">
|
|
<div col class="editor-article white" id="editor-title">
|
|
<div row>
|
|
<input type="text" value="123123123" />
|
|
</div>
|
|
</div>
|
|
<div col class="editor-article" id="editor-heading1">
|
|
<div row style="--gap:8px">
|
|
<select>
|
|
<option>연설문</option>
|
|
</select>
|
|
<input type="text" />
|
|
<button class="search-icon-btn"></button>
|
|
<button class="plus-icon-btn"></button>
|
|
<button class="minus-icon-btn"></button>
|
|
</div>
|
|
<textarea></textarea>
|
|
</div>
|
|
<div col class="editor-article" id="editor-heading2">
|
|
<div row style="--gap:8px">
|
|
<select>
|
|
<option>연설문</option>
|
|
</select>
|
|
<input type="text" />
|
|
<button class="search-icon-btn"></button>
|
|
<button class="plus-icon-btn"></button>
|
|
<button class="minus-icon-btn"></button>
|
|
</div>
|
|
<textarea></textarea>
|
|
</div>
|
|
<div col class="editor-article" id="editor-heading3">
|
|
<div row style="--gap:8px">
|
|
<select>
|
|
<option>연설문</option>
|
|
</select>
|
|
<input type="text" />
|
|
<button class="search-icon-btn"></button>
|
|
<button class="plus-icon-btn"></button>
|
|
<button class="minus-icon-btn"></button>
|
|
</div>
|
|
<textarea></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div col class="editor-indicator white">
|
|
<div col center middle>
|
|
<a href="#editor-title" current><div class="title"></div></a>
|
|
<a href="#editor-heading1"><div class="h1"></div></a>
|
|
<a href="#editor-heading2"><div class="h2"></div></a>
|
|
<a href="#editor-heading3"><div class="h3"></div></a>
|
|
<a href="#editor-heading4"><div class="message"></div></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</container>
|
|
</section>
|
|
</body>
|
|
|
|
</html> |