- CSS 변수 시스템 확장 (4단계 그림자, 다크모드 텍스트 불투명도, 틸 악센트, 스태거 딜레이) - btn-secondary 오렌지→틸 아웃라인으로 차별화 - 카드 변형 클래스 추가 (card--flat/elevated/interactive) - 6개 페이지 CSS 중복 제거 및 그림자/다크모드 표준화 - 다크모드 텍스트 가시성 수정 (QnA, services 등) - reveal 애니메이션 변형 (fade, zoom) 및 stagger-children 적용 - 태블릿 브레이크포인트 (769px~1024px) 추가 - 공통 page-header 스타일 통합 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
429 lines
8.6 KiB
CSS
429 lines
8.6 KiB
CSS
/* ========================================
|
|
About 페이지 전용 스타일
|
|
======================================== */
|
|
|
|
/* 회사 정보 그리드 */
|
|
.company-info {
|
|
margin-bottom: var(--spacing-3xl);
|
|
}
|
|
|
|
.info-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
background: var(--bg-light);
|
|
padding: var(--spacing-2xl);
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.info-item h3 {
|
|
color: var(--primary-color);
|
|
font-size: var(--font-sm);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.info-item p {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.info-item.full-width {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.info-item.full-width p {
|
|
line-height: 1.8;
|
|
color: var(--text-secondary);
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* About 콘텐츠 */
|
|
.about-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-2xl);
|
|
}
|
|
|
|
.about-content .card {
|
|
padding: var(--spacing-2xl);
|
|
}
|
|
|
|
.about-content h2 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-lg);
|
|
font-size: var(--font-3xl);
|
|
}
|
|
|
|
.about-content p {
|
|
color: var(--text-secondary);
|
|
line-height: 1.8;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.about-content p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* 비전 & 미션 */
|
|
.vision-mission {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-lg);
|
|
}
|
|
|
|
.vm-item {
|
|
padding: var(--spacing-xl);
|
|
background: var(--bg-light);
|
|
border-radius: var(--border-radius);
|
|
border-left: 4px solid var(--primary-color);
|
|
}
|
|
|
|
.vm-item h3 {
|
|
font-size: var(--font-xl);
|
|
margin-bottom: var(--spacing-md);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.vm-item p {
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* 타임라인 */
|
|
.timeline {
|
|
position: relative;
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.timeline::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 30px;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 2px;
|
|
background: var(--primary-color);
|
|
}
|
|
|
|
.timeline-item {
|
|
position: relative;
|
|
padding-left: 80px;
|
|
margin-bottom: var(--spacing-2xl);
|
|
}
|
|
|
|
.timeline-item::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 22px;
|
|
top: 5px;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 50%;
|
|
background: var(--primary-color);
|
|
border: 4px solid var(--bg-white);
|
|
box-shadow: 0 0 0 2px var(--primary-color);
|
|
}
|
|
|
|
.timeline-date {
|
|
position: absolute;
|
|
left: 60px;
|
|
top: 0;
|
|
color: var(--primary-color);
|
|
font-weight: 600;
|
|
font-size: var(--font-sm);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.timeline-content {
|
|
background: var(--bg-light);
|
|
padding: var(--spacing-lg);
|
|
border-radius: var(--border-radius);
|
|
margin-left: var(--spacing-xl);
|
|
}
|
|
|
|
.timeline-content h4 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.timeline-content p {
|
|
color: var(--text-secondary);
|
|
margin: 0;
|
|
}
|
|
|
|
/* 팀 섹션 */
|
|
.team-section {
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
.team-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-2xl);
|
|
}
|
|
|
|
.team-card {
|
|
background: var(--bg-white);
|
|
padding: var(--spacing-2xl);
|
|
border-radius: var(--border-radius);
|
|
text-align: center;
|
|
transition: var(--transition);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.team-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: var(--shadow-xl);
|
|
}
|
|
|
|
.team-avatar {
|
|
width: 120px;
|
|
height: 120px;
|
|
margin: 0 auto var(--spacing-lg);
|
|
background: var(--gradient-main);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 3rem;
|
|
overflow: hidden;
|
|
border: 3px solid var(--primary-color);
|
|
box-shadow: var(--shadow-glow-md);
|
|
}
|
|
|
|
.team-avatar img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.team-card h3 {
|
|
font-size: var(--font-2xl);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.team-nickname {
|
|
color: var(--primary-color);
|
|
font-weight: 500;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.team-role {
|
|
color: var(--text-secondary);
|
|
font-weight: 600;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.team-desc {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
font-size: var(--font-sm);
|
|
}
|
|
|
|
/* 핵심 가치 섹션 */
|
|
.values-section {
|
|
padding: var(--spacing-3xl) 0;
|
|
}
|
|
|
|
.values-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-2xl);
|
|
}
|
|
|
|
.value-item {
|
|
text-align: center;
|
|
padding: var(--spacing-xl);
|
|
background: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: var(--shadow-md);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.value-item:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.value-icon {
|
|
font-size: 3rem;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.value-item h3 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-sm);
|
|
font-size: var(--font-xl);
|
|
}
|
|
|
|
.value-item p {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* ========================================
|
|
다크모드
|
|
======================================== */
|
|
[data-theme="dark"] .page-header {
|
|
background: var(--dark-header-gradient);
|
|
}
|
|
|
|
[data-theme="dark"] .info-grid {
|
|
background: var(--dark-surface);
|
|
border: 1px solid var(--glass-border);
|
|
}
|
|
|
|
[data-theme="dark"] .info-item h3 {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
[data-theme="dark"] .info-item p {
|
|
color: var(--dark-text-primary);
|
|
}
|
|
|
|
[data-theme="dark"] .info-item.full-width p {
|
|
color: var(--dark-text-tertiary);
|
|
}
|
|
|
|
[data-theme="dark"] .about-content .card {
|
|
background: var(--dark-surface);
|
|
border: 1px solid var(--glass-border);
|
|
}
|
|
|
|
[data-theme="dark"] .about-content h2 {
|
|
color: var(--dark-text-primary);
|
|
}
|
|
|
|
[data-theme="dark"] .about-content p {
|
|
color: var(--dark-text-tertiary);
|
|
}
|
|
|
|
[data-theme="dark"] .vm-item {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
border-left: 4px solid var(--primary-color);
|
|
}
|
|
|
|
[data-theme="dark"] .vm-item h3 {
|
|
color: var(--dark-text-primary);
|
|
}
|
|
|
|
[data-theme="dark"] .vm-item p {
|
|
color: var(--dark-text-tertiary);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline::before {
|
|
background: rgba(255, 136, 0, 0.4);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline-item::before {
|
|
border-color: var(--dark-bg);
|
|
box-shadow: 0 0 0 2px var(--primary-color), 0 0 12px var(--glow-orange);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline-content {
|
|
background: var(--dark-surface);
|
|
border: 1px solid var(--glass-border);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline-content h4 {
|
|
color: var(--dark-text-primary);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline-content p {
|
|
color: var(--dark-text-tertiary);
|
|
}
|
|
|
|
[data-theme="dark"] .team-section {
|
|
background: var(--dark-bg);
|
|
}
|
|
|
|
[data-theme="dark"] .team-card {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
[data-theme="dark"] .team-card:hover {
|
|
border-color: rgba(255, 136, 0, 0.3);
|
|
box-shadow: 0 8px 32px rgba(255, 136, 0, 0.1);
|
|
}
|
|
|
|
[data-theme="dark"] .team-card h3 {
|
|
color: var(--dark-text-primary);
|
|
}
|
|
|
|
[data-theme="dark"] .team-role {
|
|
color: var(--dark-text-tertiary);
|
|
}
|
|
|
|
[data-theme="dark"] .team-desc {
|
|
color: var(--dark-text-tertiary);
|
|
}
|
|
|
|
[data-theme="dark"] .value-item {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
[data-theme="dark"] .value-item:hover {
|
|
border-color: rgba(255, 136, 0, 0.3);
|
|
box-shadow: 0 8px 32px rgba(255, 136, 0, 0.1);
|
|
}
|
|
|
|
[data-theme="dark"] .value-item h3 {
|
|
color: var(--dark-text-primary);
|
|
}
|
|
|
|
[data-theme="dark"] .value-item p {
|
|
color: var(--dark-text-tertiary);
|
|
}
|
|
|
|
/* 태블릿 반응형 */
|
|
@media (min-width: 769px) and (max-width: 1024px) {
|
|
.values-grid { grid-template-columns: repeat(2, 1fr); }
|
|
.team-grid { grid-template-columns: repeat(2, 1fr); }
|
|
}
|
|
|
|
/* 반응형 디자인 */
|
|
@media (max-width: 768px) {
|
|
.timeline::before {
|
|
left: 20px;
|
|
}
|
|
|
|
.timeline-item {
|
|
padding-left: 60px;
|
|
}
|
|
|
|
.timeline-item::before {
|
|
left: 12px;
|
|
}
|
|
|
|
.timeline-date {
|
|
position: relative;
|
|
left: 0;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.timeline-content {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.team-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.values-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
} |