Initial commit: Claude Skills Factory with 8 refined custom skills
Custom Skills (ourdigital-custom-skills/): - 00-ourdigital-visual-storytelling: Blog featured image prompt generator - 01-ourdigital-research-publisher: Research-to-publication workflow - 02-notion-organizer: Notion workspace management - 03-research-to-presentation: Notion research to PPT/Figma - 04-seo-gateway-strategist: SEO gateway page strategy planning - 05-gateway-page-content-builder: Gateway page content generation - 20-jamie-brand-editor: Jamie Clinic branded content GENERATION - 21-jamie-brand-guardian: Jamie Clinic content REVIEW & evaluation Refinements applied: - All skills converted to SKILL.md format with YAML frontmatter - Added version fields to all skills - Flattened nested folder structures - Removed packaging artifacts (.zip, .skill files) - Reorganized file structures (scripts/, references/, etc.) - Differentiated Jamie skills with clear roles 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,393 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{TITLE}} | 제이미성형외과</title>
|
||||
<style>
|
||||
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
|
||||
|
||||
:root {
|
||||
--jamie-green: #79A233;
|
||||
--jamie-light-green: #AFCC6D;
|
||||
--jamie-main: #6d7856;
|
||||
--jamie-black: #000000;
|
||||
--jamie-white: #FFFFFF;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: 'Pretendard', sans-serif;
|
||||
background: #1a1a1a;
|
||||
}
|
||||
|
||||
/* Slide Base */
|
||||
.slide {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
padding: 60px 80px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
page-break-after: always;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Title Slide */
|
||||
.slide-title {
|
||||
background: var(--jamie-black);
|
||||
color: var(--jamie-white);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.slide-title .logo {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border: 3px solid var(--jamie-green);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 48px;
|
||||
font-weight: bold;
|
||||
color: var(--jamie-green);
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.slide-title h1 {
|
||||
font-size: 56px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.slide-title .subtitle {
|
||||
font-size: 24px;
|
||||
color: var(--jamie-light-green);
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.slide-title .meta {
|
||||
font-size: 18px;
|
||||
color: var(--jamie-main);
|
||||
}
|
||||
|
||||
/* Content Slide */
|
||||
.slide-content {
|
||||
background: var(--jamie-white);
|
||||
}
|
||||
|
||||
.slide-header {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.slide-header h2 {
|
||||
font-size: 40px;
|
||||
font-weight: 700;
|
||||
color: var(--jamie-black);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.slide-header h2::before {
|
||||
content: '';
|
||||
width: 8px;
|
||||
height: 40px;
|
||||
background: var(--jamie-green);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.slide-body {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.slide-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid #eee;
|
||||
font-size: 14px;
|
||||
color: var(--jamie-main);
|
||||
}
|
||||
|
||||
.slide-number {
|
||||
background: var(--jamie-green);
|
||||
color: var(--jamie-white);
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Section Slide */
|
||||
.slide-section {
|
||||
background: var(--jamie-green);
|
||||
color: var(--jamie-white);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.slide-section h2 {
|
||||
font-size: 64px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.slide-section .section-num {
|
||||
font-size: 120px;
|
||||
font-weight: 700;
|
||||
opacity: 0.3;
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
right: 80px;
|
||||
}
|
||||
|
||||
/* Content Elements */
|
||||
.bullet-list {
|
||||
list-style: none;
|
||||
font-size: 28px;
|
||||
line-height: 2;
|
||||
}
|
||||
|
||||
.bullet-list li {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 20px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.bullet-list li::before {
|
||||
content: '';
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: var(--jamie-green);
|
||||
border-radius: 50%;
|
||||
margin-top: 14px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.two-column {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 60px;
|
||||
}
|
||||
|
||||
.stat-box {
|
||||
background: var(--jamie-gray, #f5f5f5);
|
||||
padding: 40px;
|
||||
border-radius: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat-number {
|
||||
font-size: 72px;
|
||||
font-weight: 700;
|
||||
color: var(--jamie-green);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 20px;
|
||||
color: var(--jamie-main);
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.highlight-box {
|
||||
background: linear-gradient(135deg, var(--jamie-green), var(--jamie-light-green));
|
||||
color: var(--jamie-white);
|
||||
padding: 40px;
|
||||
border-radius: 16px;
|
||||
font-size: 24px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.quote-box {
|
||||
font-size: 32px;
|
||||
font-style: italic;
|
||||
color: var(--jamie-main);
|
||||
border-left: 6px solid var(--jamie-green);
|
||||
padding-left: 30px;
|
||||
margin: 40px 0;
|
||||
}
|
||||
|
||||
/* Table */
|
||||
.slide-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.slide-table th {
|
||||
background: var(--jamie-green);
|
||||
color: var(--jamie-white);
|
||||
padding: 16px 24px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.slide-table td {
|
||||
padding: 16px 24px;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
/* End Slide */
|
||||
.slide-end {
|
||||
background: var(--jamie-black);
|
||||
color: var(--jamie-white);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.slide-end .logo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border: 2px solid var(--jamie-green);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
color: var(--jamie-green);
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.slide-end h2 {
|
||||
font-size: 48px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.slide-end .contact {
|
||||
font-size: 20px;
|
||||
color: var(--jamie-main);
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
/* Print / PDF */
|
||||
@media print {
|
||||
.slide {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
page-break-after: always;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Slide 1: Title -->
|
||||
<div class="slide slide-title">
|
||||
<div class="logo">J</div>
|
||||
<h1>{{TITLE}}</h1>
|
||||
<p class="subtitle">{{SUBTITLE}}</p>
|
||||
<p class="meta">제이미성형외과 | {{DATE}}</p>
|
||||
</div>
|
||||
|
||||
<!-- Slide 2: Section Divider -->
|
||||
<div class="slide slide-section">
|
||||
<span class="section-num">01</span>
|
||||
<h2>{{SECTION_1_TITLE}}</h2>
|
||||
</div>
|
||||
|
||||
<!-- Slide 3: Content -->
|
||||
<div class="slide slide-content">
|
||||
<div class="slide-header">
|
||||
<h2>{{SLIDE_3_TITLE}}</h2>
|
||||
</div>
|
||||
<div class="slide-body">
|
||||
<ul class="bullet-list">
|
||||
{{SLIDE_3_BULLETS}}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="slide-footer">
|
||||
<span>제이미성형외과</span>
|
||||
<span class="slide-number">3</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Slide 4: Two Column -->
|
||||
<div class="slide slide-content">
|
||||
<div class="slide-header">
|
||||
<h2>{{SLIDE_4_TITLE}}</h2>
|
||||
</div>
|
||||
<div class="slide-body">
|
||||
<div class="two-column">
|
||||
<div>
|
||||
{{SLIDE_4_LEFT}}
|
||||
</div>
|
||||
<div>
|
||||
{{SLIDE_4_RIGHT}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slide-footer">
|
||||
<span>제이미성형외과</span>
|
||||
<span class="slide-number">4</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Slide 5: Stats -->
|
||||
<div class="slide slide-content">
|
||||
<div class="slide-header">
|
||||
<h2>{{SLIDE_5_TITLE}}</h2>
|
||||
</div>
|
||||
<div class="slide-body">
|
||||
<div class="two-column">
|
||||
<div class="stat-box">
|
||||
<div class="stat-number">{{STAT_1_NUMBER}}</div>
|
||||
<div class="stat-label">{{STAT_1_LABEL}}</div>
|
||||
</div>
|
||||
<div class="stat-box">
|
||||
<div class="stat-number">{{STAT_2_NUMBER}}</div>
|
||||
<div class="stat-label">{{STAT_2_LABEL}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slide-footer">
|
||||
<span>제이미성형외과</span>
|
||||
<span class="slide-number">5</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Slide 6: Quote -->
|
||||
<div class="slide slide-content">
|
||||
<div class="slide-header">
|
||||
<h2>핵심 메시지</h2>
|
||||
</div>
|
||||
<div class="slide-body">
|
||||
<div class="quote-box">
|
||||
"{{QUOTE}}"
|
||||
</div>
|
||||
<div class="highlight-box">
|
||||
{{HIGHLIGHT_MESSAGE}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="slide-footer">
|
||||
<span>제이미성형외과</span>
|
||||
<span class="slide-number">6</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- End Slide -->
|
||||
<div class="slide slide-end">
|
||||
<div class="logo">J</div>
|
||||
<h2>감사합니다</h2>
|
||||
<p class="contact">
|
||||
제이미성형외과<br>
|
||||
Jamie Plastic Surgery Clinic<br><br>
|
||||
{{CONTACT_INFO}}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,129 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{TITLE}} | 제이미성형외과</title>
|
||||
<link rel="stylesheet" href="../styles/jamie-brand.css">
|
||||
<style>
|
||||
/* Additional inline styles for standalone HTML */
|
||||
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Cover Page -->
|
||||
<div class="jamie-cover">
|
||||
<div class="jamie-cover-logo">
|
||||
<!-- SVG Logo Placeholder -->
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none">
|
||||
<circle cx="60" cy="60" r="58" stroke="#79A233" stroke-width="4"/>
|
||||
<text x="60" y="70" text-anchor="middle" fill="#79A233" font-size="32" font-weight="bold">J</text>
|
||||
</svg>
|
||||
</div>
|
||||
<h1>{{TITLE}}</h1>
|
||||
<p class="subtitle">{{SUBTITLE}}</p>
|
||||
<p class="meta">
|
||||
제이미성형외과<br>
|
||||
{{DATE}}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Document Content -->
|
||||
<div class="jamie-document">
|
||||
|
||||
<!-- Header -->
|
||||
<header class="jamie-header">
|
||||
<div class="jamie-header-text">
|
||||
<span class="jamie-header-title">제이미성형외과</span>
|
||||
</div>
|
||||
<div class="jamie-header-text">
|
||||
<span class="jamie-header-title">{{DOCUMENT_TYPE}}</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Executive Summary -->
|
||||
<section class="jamie-section">
|
||||
<div class="jamie-section-header">
|
||||
<span class="jamie-section-number">1</span>
|
||||
<h2>개요</h2>
|
||||
</div>
|
||||
<div class="jamie-card jamie-card-accent">
|
||||
<p>{{SUMMARY}}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Key Findings -->
|
||||
<section class="jamie-section">
|
||||
<div class="jamie-section-header">
|
||||
<span class="jamie-section-number">2</span>
|
||||
<h2>주요 내용</h2>
|
||||
</div>
|
||||
|
||||
<div class="jamie-callout">
|
||||
<div class="jamie-callout-title">핵심 포인트</div>
|
||||
<ul class="jamie-list">
|
||||
<li>{{KEY_POINT_1}}</li>
|
||||
<li>{{KEY_POINT_2}}</li>
|
||||
<li>{{KEY_POINT_3}}</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{{CONTENT}}
|
||||
</section>
|
||||
|
||||
<!-- Recommendations -->
|
||||
<section class="jamie-section">
|
||||
<div class="jamie-section-header">
|
||||
<span class="jamie-section-number">3</span>
|
||||
<h2>권장 사항</h2>
|
||||
</div>
|
||||
|
||||
<div class="jamie-two-col">
|
||||
<div class="jamie-card">
|
||||
<h4>✅ Do's</h4>
|
||||
<ul class="jamie-checklist">
|
||||
{{DOS_LIST}}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="jamie-card">
|
||||
<h4>❌ Don'ts</h4>
|
||||
<ul class="jamie-list">
|
||||
{{DONTS_LIST}}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Status / Results -->
|
||||
<section class="jamie-section">
|
||||
<div class="jamie-section-header">
|
||||
<span class="jamie-section-number">4</span>
|
||||
<h2>결과</h2>
|
||||
</div>
|
||||
|
||||
<table class="jamie-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>항목</th>
|
||||
<th>상태</th>
|
||||
<th>비고</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{TABLE_ROWS}}
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="jamie-footer">
|
||||
<p>
|
||||
<strong>제이미성형외과</strong> | Jamie Plastic Surgery Clinic<br>
|
||||
본 문서는 내부 검토용으로 작성되었습니다.<br>
|
||||
{{DATE}} | Confidential
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,315 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>브랜드 검토 결과 | 제이미성형외과</title>
|
||||
<style>
|
||||
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
|
||||
|
||||
:root {
|
||||
--jamie-green: #79A233;
|
||||
--jamie-light-green: #AFCC6D;
|
||||
--jamie-main: #6d7856;
|
||||
--jamie-black: #000000;
|
||||
--jamie-white: #FFFFFF;
|
||||
--jamie-gray: #f5f5f5;
|
||||
--status-pass: #22c55e;
|
||||
--status-warn: #f59e0b;
|
||||
--status-fail: #ef4444;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: 'Pretendard', sans-serif;
|
||||
background: var(--jamie-gray);
|
||||
padding: 40px 20px;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
background: var(--jamie-white);
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 4px 24px rgba(0,0,0,0.1);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
.header {
|
||||
background: var(--jamie-black);
|
||||
color: var(--jamie-white);
|
||||
padding: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.header-logo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background: var(--jamie-green);
|
||||
border-radius: 50%;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
font-size: 24px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.header .subtitle {
|
||||
color: var(--jamie-main);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Score Section */
|
||||
.score-section {
|
||||
padding: 32px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid var(--jamie-gray);
|
||||
}
|
||||
|
||||
.score-circle {
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
border-radius: 50%;
|
||||
display: inline-flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.score-pass { background: linear-gradient(135deg, var(--status-pass), #16a34a); }
|
||||
.score-warn { background: linear-gradient(135deg, var(--status-warn), #d97706); }
|
||||
.score-fail { background: linear-gradient(135deg, var(--status-fail), #dc2626); }
|
||||
|
||||
.score-number {
|
||||
font-size: 48px;
|
||||
font-weight: 700;
|
||||
color: var(--jamie-white);
|
||||
}
|
||||
|
||||
.score-label {
|
||||
font-size: 14px;
|
||||
color: rgba(255,255,255,0.8);
|
||||
}
|
||||
|
||||
.score-text {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
color: var(--jamie-black);
|
||||
}
|
||||
|
||||
/* Criteria Grid */
|
||||
.criteria-section {
|
||||
padding: 32px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 20px;
|
||||
color: var(--jamie-black);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.section-title::before {
|
||||
content: '';
|
||||
width: 4px;
|
||||
height: 20px;
|
||||
background: var(--jamie-green);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.criteria-grid {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.criteria-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 16px;
|
||||
background: var(--jamie-gray);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.criteria-name {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.criteria-status {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.status-icon {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 12px;
|
||||
color: var(--jamie-white);
|
||||
}
|
||||
|
||||
.status-pass { background: var(--status-pass); }
|
||||
.status-warn { background: var(--status-warn); }
|
||||
.status-fail { background: var(--status-fail); }
|
||||
|
||||
/* Issues Section */
|
||||
.issues-section {
|
||||
padding: 0 32px 32px;
|
||||
}
|
||||
|
||||
.issue-card {
|
||||
background: #fef2f2;
|
||||
border-left: 4px solid var(--status-fail);
|
||||
padding: 16px;
|
||||
border-radius: 0 8px 8px 0;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.issue-card.warning {
|
||||
background: #fffbeb;
|
||||
border-left-color: var(--status-warn);
|
||||
}
|
||||
|
||||
.issue-title {
|
||||
font-weight: 600;
|
||||
margin-bottom: 4px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.issue-original {
|
||||
background: rgba(0,0,0,0.05);
|
||||
padding: 8px 12px;
|
||||
border-radius: 4px;
|
||||
font-size: 14px;
|
||||
margin: 8px 0;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.issue-suggestion {
|
||||
font-size: 14px;
|
||||
color: var(--jamie-green);
|
||||
}
|
||||
|
||||
.issue-suggestion strong {
|
||||
color: var(--jamie-black);
|
||||
}
|
||||
|
||||
/* Recommendations */
|
||||
.recommendations-section {
|
||||
padding: 0 32px 32px;
|
||||
}
|
||||
|
||||
.recommendation-list {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.recommendation-list li {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 12px;
|
||||
padding: 12px 0;
|
||||
border-bottom: 1px solid var(--jamie-gray);
|
||||
}
|
||||
|
||||
.recommendation-list li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.rec-icon {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
background: var(--jamie-light-green);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
color: var(--jamie-green);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: var(--jamie-gray);
|
||||
padding: 24px 32px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
color: var(--jamie-main);
|
||||
}
|
||||
|
||||
.footer strong {
|
||||
color: var(--jamie-black);
|
||||
}
|
||||
|
||||
/* Print */
|
||||
@media print {
|
||||
body { background: white; padding: 0; }
|
||||
.container { box-shadow: none; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<!-- Header -->
|
||||
<div class="header">
|
||||
<div class="header-logo">J</div>
|
||||
<h1>브랜드 검토 결과</h1>
|
||||
<p class="subtitle">Brand Compliance Review | {{DATE}}</p>
|
||||
</div>
|
||||
|
||||
<!-- Score -->
|
||||
<div class="score-section">
|
||||
<div class="score-circle {{SCORE_CLASS}}">
|
||||
<span class="score-number">{{SCORE}}</span>
|
||||
<span class="score-label">/ 100</span>
|
||||
</div>
|
||||
<p class="score-text">{{SCORE_MESSAGE}}</p>
|
||||
</div>
|
||||
|
||||
<!-- Criteria -->
|
||||
<div class="criteria-section">
|
||||
<h2 class="section-title">검토 항목</h2>
|
||||
<div class="criteria-grid">
|
||||
{{CRITERIA_ITEMS}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Issues -->
|
||||
<div class="issues-section">
|
||||
<h2 class="section-title">수정 필요 사항</h2>
|
||||
{{ISSUES}}
|
||||
</div>
|
||||
|
||||
<!-- Recommendations -->
|
||||
<div class="recommendations-section">
|
||||
<h2 class="section-title">권장 사항</h2>
|
||||
<ul class="recommendation-list">
|
||||
{{RECOMMENDATIONS}}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<div class="footer">
|
||||
<strong>제이미성형외과</strong> Brand Guardian<br>
|
||||
본 검토는 브랜드 가이드라인 v1.0 기준으로 수행되었습니다.
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user