프레젠테이션 슬라이드 개선: 세로 플로우차트로 변경 및 프로세스 최적화
- 외주/자체제작 프로세스를 가로에서 세로 방향으로 변경 - 이모지 제거하여 전문적인 프레젠테이션 스타일 적용 - 화살표 방향을 → 에서 ↓ 로 변경 - 불필요한 견적 요청 문구 제거 - 자체제작 프로세스 최적화: 8단계 → 7단계로 단순화 - 최종 검사를 검수 및 보관 단계에 통합 - 상세한 프로세스 내용 복원 및 가독성 향상
This commit is contained in:
@@ -5,7 +5,118 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>1단계: 준비 단계 - TK Project</title>
|
||||
<link rel="stylesheet" href="styles/main.css">
|
||||
<link rel="stylesheet" href="styles/devonthink.css">
|
||||
<link rel="stylesheet" href="styles/devonthink.css?v=2">
|
||||
<style>
|
||||
/* 인라인 CSS로 강제 적용 */
|
||||
.simple-note {
|
||||
background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%) !important;
|
||||
border-left: 4px solid #34A853 !important;
|
||||
padding: 20px !important;
|
||||
border-radius: 12px !important;
|
||||
margin: 20px 0 !important;
|
||||
box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.15) !important;
|
||||
}
|
||||
|
||||
.concept-step {
|
||||
background: white !important;
|
||||
border-radius: 16px !important;
|
||||
padding: 30px !important;
|
||||
box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.15) !important;
|
||||
border: 1px solid #E8EAED !important;
|
||||
transition: all 0.3s ease !important;
|
||||
position: relative !important;
|
||||
overflow: hidden !important;
|
||||
margin: 25px 0 !important;
|
||||
}
|
||||
|
||||
.concept-step::before {
|
||||
content: '' !important;
|
||||
position: absolute !important;
|
||||
top: 0 !important;
|
||||
left: 0 !important;
|
||||
right: 0 !important;
|
||||
height: 4px !important;
|
||||
background: linear-gradient(90deg, #4A90E2, #7BB3F0) !important;
|
||||
}
|
||||
|
||||
.concept-step:hover {
|
||||
transform: translateY(-4px) !important;
|
||||
box-shadow: 0 4px 6px -1px rgba(60, 64, 67, 0.15) !important;
|
||||
}
|
||||
|
||||
.concept-step h4 {
|
||||
color: #4A90E2 !important;
|
||||
font-size: 1.3em !important;
|
||||
margin-bottom: 20px !important;
|
||||
}
|
||||
|
||||
.concept-list {
|
||||
list-style: none !important;
|
||||
padding: 0 !important;
|
||||
margin: 20px 0 !important;
|
||||
}
|
||||
|
||||
.concept-list li {
|
||||
background: #F8F9FA !important;
|
||||
padding: 12px 20px !important;
|
||||
margin: 8px 0 !important;
|
||||
border-radius: 8px !important;
|
||||
border-left: 3px solid #7BB3F0 !important;
|
||||
transition: all 0.2s ease !important;
|
||||
}
|
||||
|
||||
.concept-list li:hover {
|
||||
background: #F1F3F4 !important;
|
||||
transform: translateX(5px) !important;
|
||||
}
|
||||
|
||||
.example-box {
|
||||
background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%) !important;
|
||||
border: 2px solid #FBBC04 !important;
|
||||
border-radius: 12px !important;
|
||||
padding: 20px !important;
|
||||
margin: 20px 0 !important;
|
||||
}
|
||||
|
||||
.benefit-note {
|
||||
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
|
||||
border: 2px solid #7BB3F0 !important;
|
||||
border-radius: 10px !important;
|
||||
padding: 15px 20px !important;
|
||||
margin-top: 20px !important;
|
||||
color: #357ABD !important;
|
||||
font-weight: 500 !important;
|
||||
}
|
||||
|
||||
.key-benefits {
|
||||
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
|
||||
border-radius: 16px !important;
|
||||
padding: 30px !important;
|
||||
margin: 40px 0 !important;
|
||||
border: 1px solid #E8EAED !important;
|
||||
}
|
||||
|
||||
.benefits-grid {
|
||||
display: grid !important;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
|
||||
gap: 20px !important;
|
||||
}
|
||||
|
||||
.benefit-item {
|
||||
background: white !important;
|
||||
border-radius: 12px !important;
|
||||
padding: 25px !important;
|
||||
text-align: center !important;
|
||||
box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1) !important;
|
||||
border: 1px solid #E8EAED !important;
|
||||
transition: all 0.3s ease !important;
|
||||
}
|
||||
|
||||
.benefit-item:hover {
|
||||
transform: translateY(-4px) !important;
|
||||
box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.15) !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="workflow-page">
|
||||
<div class="workflow-detail-page">
|
||||
|
||||
Reference in New Issue
Block a user