Files
ITAM/src/styles/guide.css
Taehoon b169176d57 WIP(style): UI 컴포넌트 하드코딩 제거 및 CSS 통합 (진행 중)
- 작업 상태: 진행 중 (Work In Progress)
- 주요 변경 사항:
  1. CSS 파일 통합: HWModal, SWModal, ListFactory 등에서 인라인 스타일(style 속성) 전면 제거 및 클래스 기반으로 재작성
  2. 폰트/타이포그래피 스케일업: 최소 폰트 14px 기준으로 전체 텍스트 크기 상향 및 굵기(font-weight) 상향 조정
  3. GNB(상단바) 레이아웃 개편: 2단 구조(로고 라인 / 메뉴 라인)로 변경 및 카테고리 텍스트 라벨 생략을 통한 간결화
  4. 로고 이미지 교체: image 92.png로 업데이트 및 경로 정리
  5. 디자인 가이드 분리: README에서 design_rule.md로 디자인 정책 문서 독립

* 참고: 현재 디자인 검토를 위한 중간 반영 상태이며, 피드백에 따라 추가 수정 예정임.
2026-06-12 15:57:20 +09:00

189 lines
3.3 KiB
CSS

/* ITAM Guide Modal Styles - Updated to match common modal style */
/* Tab Container (below header) */
.guide-tabs-container {
background: #FAFAFA;
border-bottom: 1px solid var(--border-color);
padding: 0 1.5rem;
flex-shrink: 0;
}
.guide-tabs {
display: flex;
gap: 2px;
overflow-x: auto;
scrollbar-width: none;
}
.guide-tabs::-webkit-scrollbar { display: none; }
.guide-tab {
padding: 0.75rem 1.25rem;
font-size: 24px;
font-weight: 700;
color: var(--text-muted);
cursor: pointer;
border-bottom: 2px solid transparent;
transition: all 0.2s ease;
white-space: nowrap;
}
.guide-tab:hover {
color: var(--primary-color);
background: rgba(30, 81, 73, 0.04);
}
.guide-tab.active {
color: var(--primary-color);
border-bottom-color: var(--primary-color);
background: white;
}
/* Content Area */
.guide-body {
padding-bottom: 2rem;
}
.guide-tab-panel {
display: none;
padding: 1.5rem 0;
animation: guideFadeIn 0.3s ease;
}
.guide-tab-panel.active {
display: block;
}
@keyframes guideFadeIn {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: translateY(0); }
}
/* Section Styles */
.guide-section {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 2rem;
}
.guide-section:last-child {
margin-bottom: 0;
}
.guide-section h3 {
font-size: 1.73rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--primary-color);
color: var(--primary-color);
margin: 0;
display: flex;
align-items: center;
gap: 8px;
}
.guide-text {
font-size: 24px;
color: var(--text-main);
line-height: 1.7;
margin: 0;
}
/* Flowchart Styles */
.flow-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.75rem;
padding: 1.5rem;
background-color: #f9fafb;
border-radius: 8px;
border: 1px solid var(--border-color);
}
.flow-row {
display: flex;
width: 100%;
gap: 1rem;
align-items: center;
}
.flow-step {
flex: 1;
background: white;
padding: 1rem;
border-radius: 6px;
border: 1px solid var(--border-color);
display: flex;
align-items: flex-start;
gap: 12px;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.flow-step .step-number {
width: 24px;
height: 24px;
min-width: 24px;
border-radius: 50%;
background-color: var(--primary-color);
color: white;
font-size: 23px;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.flow-step .step-label {
font-weight: 800;
color: var(--text-main);
font-size: 24px;
display: block;
}
.flow-step .step-desc {
font-size: 23px;
color: var(--text-muted);
line-height: 1.5;
margin-top: 4px;
}
.flow-arrow-right {
color: var(--text-muted);
display: flex;
align-items: center;
}
/* Info Table Style */
.guide-info-table {
width: 100%;
border-collapse: collapse;
font-size: 24px;
}
.guide-info-table th {
background: #f8faf9;
color: var(--primary-color);
font-weight: 800;
padding: 0.75rem;
text-align: left;
border-bottom: 1px solid var(--border-color);
}
.guide-info-table td {
padding: 0.75rem;
border-bottom: 1px solid #f3f4f6;
color: var(--text-main);
}
/* Tip Box Style */
.guide-tip {
background: var(--primary-light);
border-left: 4px solid var(--primary-color);
padding: 1rem;
font-size: 24px;
color: var(--primary-color);
line-height: 1.6;
}